I'm creating a webpage to display a list of Car parts.
The page divided into sections, each section holds two columns (one for each car part).
Is there a cleaner more efficient way of semantically representing the code below? Can this be done using a list maybe? Any code examples will be appreciated.
section groups related content
divider class creates a row with the wrapper
article is used for each part
span_1_of_2 class assigns the % width of each column
<section> <!-- GROUPS related content -->
<div class="divider"> <!-- **creates a row** -->
<article class="col span_1_of_2"> <!-- **span controls width** -->
<h3>Brake discs</h3>
<img src="styles/images/trek-speed.jpg" alt="Trek speed bike"/>
<ul class="info"> <!-- **product details** -->
<li>Wheel Size 24</li>
<li>Carbon</li>
</ul>
</article>
<article class="col span_1_of_2"> <!-- **PRODUCT 2** -->
<h3>Alloy Wheels</h3>
<img src="alloy.jpg>
<ul class="info"> <!-- **product info** -->
<li>Wheel Size</li>
<li>Carbon</li>
</ul>
</article>
</div> <!-- **end divider** -->
</section>
many thanks.