I want to create a list of products similar to the way that Ebay shows these in "List View". Its essentially an unordered list, where an image is shown on the left (33% width) and the title/subtitle/attributes/price are shown next to it on the right.
I've tried dozens of examples found on Stack Overflow with little success. I've seen arguments stating that floating it left is best and arguments saying inline-block is best. Neither seems to work entirely, leaving me confused as to how to accomplish this.
The following snippet gets the general idea, but if the text content extends vertically further than the image, it throws off the layout. The list item should essentially work as display:block with 2 columns inside, 1 for the image and 1 for text description.
Example Code:
<ul>
<li style="width:100%;display:flex;">
<div style="width:33%;">
<img src="http://thumbs.ebaystatic.com/images/m/m4JYJFjgp9rwTii4MicWiDA/s-l225.jpg">
</div>
<div style="flex:1;">
<ul>
<li><h3 class="title">This Is Some Type of Product Title</h3></li>
<li class="subtitle">This is a longer description text that appears smaller below it</li>
<li class="attr">Soft Wooly Cloth Fabric</li>
<li class="attr">Big Screen</li>
<li><span class="price" style="font-weight:bold;">9.99$</span></li>
<li class="attr">More Attributes</li>
<li class="attr">More Attributes</li>
<li class="attr">More Attributes</li>
</ul>
</div>
</li>
</ul>
I did it. Check the code but is not responsive. You can modify it as you can. I hope this helps.