hi, i was using the height : 100% for a table and that didnt work. then i was told that i need to add a body, html{height : 100%} which i did but now my table doesnt show at all, can anyone help me?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
<!--
body,html {height:100%}
#tab {width: 100%; height: 100%; background-color: #d4f}
-->
</head>
<body>
<table id="tab"></table>
</body>
</html>