我正在尝试为我的页面添加背景颜色,但它没有正确覆盖整个页面.
CSS代码
#background
{
background-color:#9B59B6;
margin: -19px 0 0 0; /*-19px here to remove white space on the very top of the page*/
width: 100%;
}
如果我添加:
position:absolute;
height:100%;
width:100%;
它会解决问题,但是,它会导致另一个问题:
截图2的CSS CODE
#background
{
position:absolute;
height:100%;
width:100%;
background-color:#9B59B6;
margin: -19px 0 0 0;
width: 100%;
}
我该如何解决这个问题?我尝试使用position:relative或overflow:hidden,但它没有帮助.
我在ASP.net MVC 6上这样做,所以格式是cshtml而不是html.
请帮帮忙,谢谢!