Тема: iframe ігнорує height
<!DOCTYPE html>
<html>
<head>
<title>Base Screen</title>
<script type="text/javascript">
function load() {
document.getElementById("Content").src='Screen1.html';
}
function unload() {
document.getElementById("Content").innerHTML='';
}
</script>
</head>
<body>
<noscript><h2 style="color: #ff0000">Your browser doesn't support Javascript! </h2></noscript>
<table id="Screen">
<tr id="ScreenHead">
<button id="Enter" onclick="load();">Enter</button>
<button id="Exit" onclick="unload();">Exit</button>
</tr>
<tr>
<iframe id="Content" style="width: 100%; height: 100%;">
</iframe>
</tr>
</table>
</body>
</html>
width: 100% - працює, а height: 100% - ні. Чому так виходить ?