我的主样式表中有这个 CSS 是否可以从此 CSS 中删除水平滚动条:
html, body, #wrap {
width:100%;
height:100%;
margin:0;
padding:0;
font-family:Calibri;
}
#wrap {
height: auto;
min-height: 100%;
}
/* header stuff */
#header-topbar {
width:100%;
height:30px;
padding:10px 10px 10px 10px;
background-color:#666666;
}
#header-topbar2 {
width:100%;
height:80px;
padding:10px 10px 10px 10px;
background-color:#eeeeee;
}
#phone-tel {
position:block;
float:right;
margin-right:16%;
margin-top:5px;
font-size:20px;
}
#logo {
position:absolute;
float:left;
margin-left:15%;
margin-top:0px;
}
/* main body/content */
#body-content {
padding-bottom:200px;
width:70%;
margin:120px auto 0 auto;
padding:10px 10px 10px 10px;
border:solid 1px #a79494;
border-top:solid 4px #a2cd3a;
}
/*footer */
#footer .column {
margin-top:-200px;
clear:both;
float: left;
width: 25%;
}
#footer .column div {
margin: 5px;
height: 200px;
background: #eeeeee;
}
我尝试将宽度:100% 添加到正文、html 以及填充:0 和边距:0 但仍然无法正常工作