I am facing an issue with the heights of divs inside table cells. While they expand correctly to 100% height in Chrome, the same is not happening in Firefox. Here is a comparison image showing the difference:
https://i.sstatic.net/knkeT.png
The CSS styling for the table cells is as follows:
td {
height: 100% !important;
vertical-align: top !important;
}
And for the inner div elements:
.div-box {
height: 100% !important;
display: inline-block !important;
}
Shouldn't these CSS rules produce the same result across different web browsers?
Thank you.