How to fix IE11 div absolute positioning not filling td when other cell height is specified? (works on chrome na ff)
Clash Royale CLAN TAG #URR8PPP How to fix IE11 div absolute positioning not filling td when other cell height is specified? (works on chrome na ff) I have a table with fixed width columns and a cell with fixed height. Cell without specified height should have height equal to fixed height cell and its content should have hidden overflow. table td { border: 1px solid black; width: 100px; position: relative; } table td > .cell.row-height-indicator { position: static; height: 30px; } .cell { padding: 10px; position: absolute; top: 0; left:0; right: 0; bottom: 0; overflow: hidden; background-color: lightblue; } <table> <tr> <td><div class="cell">kljdslkdjsl</div></td> <td><div class="cell">kljdslkdjsl</div></td> <td><div class="cell">kljdslkdjsl</div></td> <td><div class="cell">kljdslkdjsl</div></t...