如何从网页中删除空白?

时间:2015-06-04 10:30:00

标签: html css css3

我有一个网页设计问题。不要从页面中删除这个空间!

这种风格:

<body>
   <div style="width:100%;" >
      ss
   </div>

请看我的页面的这张照片:

enter image description here

1 个答案:

答案 0 :(得分:1)

取消文档边距,将此样式添加到您的网页

<style>
html, body{
   margin: 0;
}
</style>