I created a list component for my application, I cannot use tables due to the style.
I want the elements inside the "rows" to have the same width from top to bottom, such as columns. The code looks something like this:
<div class="row"> <div class"element>iPhone </div> <div class"element>Buy an iPhone now!</div> </div> <div class="row"> <div class"element>Airport Express </div> <div class"element>Buy an Airport Express now!</div> </div> <div class="row"> <div class"element>iPad </div> <div class"element>Buy an iPad now!</div> </div>
Currently it looks like this:

And this is what I want:

Is there any way to do this?
source share