My goal is to align table cells with an image by adjusting the height of each row. However, I am facing difficulties as the rows are not evenly spread out and do not use the whole percentage allocated. Ideally, I want a 725px high table with equally distributed cells. How can I ensure that they are evenly spread?
Visit this link for more details.
This is how I am currently setting the height:
tr {
height: 2.8571428571429%;
}
I am aware that using height could cause issues with long text content making rows too tall due to multi-line text. Is there a better approach to achieve even distribution?