I'm facing a challenge that I've been trying to resolve using just CSS, but I've hit a roadblock.
The issue at hand involves aligning multiple spans next to each other and making them equal in height. The height is not fixed and depends on the amount of text entered by the user in the description span.
Here's a visual representation of what I'm aiming for:
Below is the code snippet I am currently working with:
<table style="width: 100%;">
<tr>
<td>
<span id="id_span_wrapper">
<span id="id_sapn_label" style="background-color: #000; width: 20%;">Description</span>
<span id="id_span_description" style="background-color: #fff; width: 80%;>
this text can be between 1 and 5,000 characters
</span>
</span>
</td>
</tr>
</table>