如何让网页页面跟着浏览器窗口缩小而缩小?就像hao123网站一样,浏览器窗口缩小了,页面也缩小,还能看到全部内容。
就会随窗口缩小而缩小
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<style type="text/css">
<!--
.test{ background-color: #666; height: 200px; width: 80%; margin-right: auto; margin-left: auto; }
-->
</style>
<body>
<div class="test"></div>
</body>
</html>
噢……很感谢你!!我想再请教你,如何让网页页面随着浏览器的窗口缩小而居中?
@T桢: 上面那个就可以喽
多有的div,width=10%,height=10%,都用百分比
楼上的已经回答了,设置网页页面的宽高 (html属性 width: 宽度, height: 高度, 都用百分比 ),
这样浏览器窗口改变了,网页页面也就跟着调整了。
可以说说具体操作吗?
看不懂....