如何使网页背景及内容正好一屏?

来源:百度知道 编辑:UC知道 时间:2024/05/31 14:09:48
如何使网页背景及内容正好一屏?
高度怎么控制正好一屏啊?

1.
<body style="margin:0px;">

2.
表格外层表格宽度按100%定义,所有表格宽度最大不超过775(800*600)、1002(1024*768)
<table width="100%" border="0" cellpadding="0" cellspacing="0">

补充:

高度是靠你自己调整的噢,设置height这个属性,使网页不出现滚动条即为一屏。

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title></title>
</head>
<body background="背景图.jpg">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>网页内容 网页内容 网页内容 网页内容 </td>
</tr>
</table>
</body>
</html>

要谁整屏,就将睡的width弄成width="100%"