Hi,
I'm currently working on an eCommerce website and am wondering what the best way to list the products is in css.
The products displayed in a list down the center of the page, one after another, with an image, some descriptive text and price etc; I'm wondering whether it's best to put them in a styled list, or within one div after another?
Example:
Code CSS:<div class"product"> product 1 information </div> <div class"product"> product 2 information </div>
or
Code CSS:<ul> <li>product 1 information</li> <li>product 2 information</li> </ul>






Bookmarks