Hello,
I have two or more div elements which have the same min-width.
<div class="wrapper">
<div class="element01">text01</div>
<div class="element02">text02</div>
...
</div>
In a browser with normal font size all div elements have the same
width (min-width).
When I change the font size in browser some (but not all) div elements
become more largely than min-width. I get different widths for the div
elements.
How can I get the same width for all div elements with every font
size?
I don't want to work with tables.
Thanks for your hints, Kai