I'm currently experimenting with creating a vertical text-align: justify
effect between divs.
I am working with a structure that includes 4 div
elements inside a td
, like this:
<td>
<div></div>
<div></div>
<div></div>
<div></div>
</td>
However, the total height of the divs is not equal to the height of the td, causing them to stack vertically in the center. Is there a way to add some spacing between them, similar to justified content?