gpt4 book ai didi

html - 我的顶部栏没有完全填满

转载 作者:太空宇宙 更新时间:2023-11-04 09:09:58 24 4
gpt4 key购买 nike

我网站上的顶部栏没有完全改变颜色...底部有一条条子。有谁知道为什么?我的websiteerror .我的代码:

HTML

<header>
<ul>
<li> <a href="/">Home</a></li>
<li> <a href="https://github.com/reteps" >Github</a></li>
<li> <a href="gradecalc/gradecalc.html" >Grade Calculator</a></li>
</ul>
</header>

CSS

header ul { /*selects list of stuff*/
list-style-type: none; /*no bullet points*/
margin: 0;
padding: 0;
background-color: #70deef;
position: fixed;
width: 100%;
height: 50px;
}
header li { /*selects list element*/
float: left; /*move to left*/
}
header li a {
display: block; /*makes a square*/
color: #ffffff; /*white*/
text-align: center;
text-decoration: none;
padding: 20px 20px 10px;
}
header li a:hover {
background-color: #d6d6d6; /*grey*/

}

最佳答案

删除 ul 标签上的高度。您的 block 高度已经由内容 font-sizepadding(加上边距/边框,如果有的话)

决定

关于html - 我的顶部栏没有完全填满,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42195406/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com