当我把无序列表
body {
margin: 0;
padding: 0;
}
.top-bar {
height: 40px;
width: 100%;
background-color: yellow;
}
#menu {
width: 1020px;
height: : 100%;
margin: 0 auto;
background-color: red;
}
ul {
background-color: red;
width: 100%;
height: 40px;
}
<body>
<div class="top-bar">
<div id="menu">
<ul>
<li>Menu1</li>
</ul>
</div>
</div>
</body>
答案 0 :(得分:2)
默认情况下,ul元素在浏览器中具有margin-top。要删除它,请添加样式
ul {
margin-top: 0;
}
答案 1 :(得分:2)