关于网页顶上的一条白色空隙

来源:互联网 发布:石油化工基础数据手册 编辑:程序博客网 时间:2024/05/02 16:32

应设置网页的页面属性,将页面的上下左右边距设为0

可以在<body></body>中加入如下字段

<style type="text/css">
<!--
body {
 margin-left: 0px;
 margin-top: 0px;
 margin-right: 0px;
 margin-bottom: 0px;
}
-->
</style>

 

 

原创粉丝点击