如何使正确的表优先于顶级表?
我希望右边的表格(粉红色的表格)一直到网页的顶部。我希望顶部的黄色表能够在屏幕右侧开始粉色的表格?链接到我在说什么:
http://wpiix10.x10.mx/ifoot11.htm
这是我正在使用的代码:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>
<body>
<table border="0" width="100%" cellspacing="0" cellpadding="0" height="100%" bgcolor="#C0C0C0" style="position: absolute; left: 0; bottom: 0">
<tr>
<td>
<table border="0" width="100%" cellspacing="0" cellpadding="0" style="position: absolute; bottom: 0" bgcolor="#00FF00" height="23" bordercolor="#FFFFFF">
<!-- MSTableType="nolayout" -->
<tr>
<td> </td>
</tr>
</table>
<div align="right" style="height: 100%;">
<table border="0" width="100%" cellspacing="0" cellpadding="0" bgcolor="#FFFF00" height="105">
<tr>
<td> </td>
</tr>
</table>
<table border="0" width="200" align="right" cellspacing="0" cellpadding="0" bgcolor="#FF00FF" height="100%">
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</div>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </td>
</tr>
</table>
</body>
</html>
答案 0 :(得分:1)
根据您必须显示的内容,您应该只使用div而不是表格。它们更容易在您的页面上发送,使它们越过其他元素等。
如果您仍想使用表格(原文如此),在目前的情况下,您应该只使用一个表格。