答案 0 :(得分:0)
下面的CSS应该这样做:
media="all"
hr {
border: none;
}
这将影响hr
元素,其完整的CSS目前是:
hr {
border: none; /* setting this to none removes the line */
border-width: 1px 0 0;
clear: both;
margin: 30px 0 30px 0;
height: 0;
}
如果您还想删除标题下的边框,也请更改
media="all"
.navibg {
background: url(images/whitebg.png);
border-bottom: none;
}