【发布时间】:2019-06-08 17:41:51
【问题描述】:
margin-top: 0、padding 和其他东西并没有帮助删除我的标题上方的空白空间。
header {
width: 100%;
height: 60px;
background-color: black;
font-family: calibri sans-serif;
font-size: 20px;
color: white;
position: relative;
}
html,
body {
margin: 0;
padding: 0;
}
.headerlist li {
list-style: none;
float: left;
padding: 15px;
}
.headerlist li>a:link {
color: white;
text-decoration: none;
}
<body>
<header>
<ul class="headerlist">
there was some li lines
</ul>
</header>
</body>
我希望标题上方没有空白,但它就在那里。
【问题讨论】:
-
是
<ul>’s margin。请使用您的开发工具并查看盒子模型。