Reputation: 27
The code below link runs fine on Chrome, Firefox:
.enalt
{
display:table-row;
bottom:0;
position:absolute;
}
however the same code does not work properly in IE 10. What should I do?
Upvotes: 0
Views: 52
Reputation: 6578
Add height: 100%;
to the tdiscell
class. height: 100%
takes up 100% of the element's parent. So it won't be tall enough if the parent isn't tall enough.
Full CSS for the element
.tdiscell
{
border:solid 2px #143357;
display : table-cell;
height: 100%; /* add this */
}
Upvotes: 1