how to give 100% height for table in html5

css, html

Solution

Give your body the height of `100%` and the table will follow - http://jsfiddle.net/R3h3p/

Problem

How to give 100% height for table, ``` <table border="1" style="height:100%"><tr> <td>Height 100%</td></tr> </table> ``` i tried this but its not taking 100% height, can any one help me

Original source