Hey guys,
I have some content.
On the left it is the title, and on the right is the content / links.
Each row has this layout.
How can i make the divs on the left all the same size.
So if the largest div on the left is 100px.
All of them are equal to 100px.
Each item is inside of its own row, so it looks something like hits
Code:
<div class="row">
<div class="left">Title Name - Largest </div>
<div class="right">Item, Item2, Item3, Item4</div>
</div>
<div class="row2">
<div class="left">Title Name </div>
<div class="right">Item, Item2, Item3, Item4</div>
</div>
<div class="row3">
<div class="left">Title Name </div>
<div class="right">Item, Item2, Item3, Item4</div>
</div>
I need the divs "left" to be the same width as the largest one.
Any help would be greatly appreciated
Cheers