gpt4 book ai didi

html - 我的 'menu' 类没有粘在屏幕顶部,当我进行填充时高度自动不起作用

转载 作者:行者123 更新时间:2023-11-28 00:52:18 26 4
gpt4 key购买 nike

好的,我知道这个标题有点令人困惑,但这里有一个描述。我在 html 中有一个标题标签,在 css 中有一个全屏背景。屏幕上方是菜单它应该留在那里(滚动时不要粘在屏幕顶部)。此外,我以前从未遇到过这个问题,当我将高度设置为自动并且我为“a”元素高度设置填充时不遵循 a 元素的填充,然后背景和屏幕顶部之间存在间隙。所以为了解决这个问题,我写了 margin-top: -20px; 但它看起来像这样。 picture 1如果我删除 margin-top 它看起来像这样: picture 2

同样,我以前从未遇到过这个问题,这是代码:HTML:

<!DOCTYPE html>
<html>
<head>
<title>Smart Hosting | Home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="./css/main.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300"
rel="stylesheet">
</head>
<body>
<header>
<div class="menu">
<ul>
<li class="current"><a href="#">Home</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Log In</a></li>
<li><a href="#">Sign Up</a></li>
</ul>
</div>
</header>
</body>
</html>

CSS

body {
margin: 0px;
padding: 0px;
font-family: Roboto;
}

body, html {
width: 100%;
height: 100%;
}

header {
background: url(./img/server.jpg) 50% 50%;
width: 100%;
height: 100%;
background-size: cover;
background-repeat: no-repeat;
}

.menu {
background: #1C2F51;
width: 100%;
height: 70px;
}

.menu ul {
list-style: none;
}

.menu li {
display: inline;
background: #25CFB0;
padding: 30px;
}

.menu a {
color: white;
text-decoration: none;
font-size: 20px;
}

最佳答案

对 li 元素使用 display: inline-block 而不是 inline 。内联元素的边距并不总是符合您的预期。

.menu ul {
list-style: none;
margin-top: 0px; //to remove the blank space at the top
}

.menu li {
display: inline-block;
background: #25CFB0;
padding: 30px;
}

https://codepen.io/anon/pen/oQgBpV

关于html - 我的 'menu' 类没有粘在屏幕顶部,当我进行填充时高度自动不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53146491/

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