I am facing an issue with a table that has 25 td's. Each td contains specific elements as shown below:
<td>
<div>
<span>
text
</span>
</div>
</td>
Additionally, there is a script in place that adjusts the size of the text inside the span to fit the entire div, meaning longer text will have smaller font size.
However, aligning the text vertically at the center of the div has been unsuccessful despite trying different methods all day long. You can view the source code on this jsfiddle page that I included for reference.
I would greatly appreciate any assistance in identifying and resolving the issue here.