gpt4 book ai didi

html - 如何在 CSS/HTML 中的菜单项之间留出空间

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

问题:无法在菜单项之间留出空间(至少 1 厘米)。

我是初学者,刚刚学习。我知道这个问题对有经验的用户来说听起来很愚蠢。

代码如下:

body {
height: auto;
width: auto;
background-image: url("img/top.png");
}

.header {
margin: 0px auto;
max-width: 960px;
}

#header {
height: 300px;
width: 960px;
background-image: url("img/top.png")
}

#menu ul {
margin: 0px auto;
margin-left: -20px;
/*pull towards left*/
margin-right: 20px;
/*push towards right*/
list-style: none;
background: #3d3d5c;
}

#menu li {
display: inline-block;
}

#menu li a {
margin-left: -40px;
color: #fff;
text-decoration: none;
display: block;
background: red;
padding: 0 10px 0 10px;
height: 54px;
width: 130px;
line-height: 54px;
}

#menu li a:hover {
color: #fff;
text-decoration: none;
background: url(img/manu1.png);
height: 54px;
width: 130px;
line-height: 54px;
}

.box {
margin: 0px auto;
width: 960px;
background-color: ghostwhite;
height: 700px;
max-height: 2200px;
}

.news {
margin: 0px auto;
margin-left: 20px;
margin-top: 20px;
display: inline-block;
background-image: url('img/bgr.png');
background-size: 960px, 500px;
width: 670px;
height: 500px;
max-height: 2000px;
}

.news h1 {
background-image: url('img/news.png');
font-style: normal;
font-size: 30px;
color: white;
width: 670px;
height: 38px;
}

.part {
margin: 0px auto;
margin-left: 700px;
margin-top: -95px;
background-image: url('img/bgr.png');
background-size: cover;
width: 240px;
height: 300px;
max-height: 2000px;
}

.part h1 {
background-image: url('img/side.png');
font-style: normal;
font-size: 30px;
color: white;
width: 240px;
height: 38px;
}
<!DOCTYPE html>
<html>

<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<title>Pagrindinis Puslapis</title>
</head>

<body>
<header class="header" id="header">
</header>
<menu class="header" id="menu">
<ul>
<li><a href='#'>Pagrindinis</a></li>
<li><a href='#'>Kontaktai</a></li>
<li><a href='#'>Paslaugos</a></li>
</ul>
</menu>
<div class="box">
<div class="news">
<h1>Labas rytas</h1>
Štai tokios naujienos
<div class="part">
<h1>RĖMĖJAI</h1>
<img src="rem.png" height="100" width="100" </img>
<h1>labas</h1>
Čia naujienų nėra

</div>
</div>
</div>


</body>

</html>

在这篇文章的正文中添加一些额外的字符以绕过验证...在这篇文章的正文中添加一些额外的字符以绕过验证...

最佳答案

您可以将margin-right 值添加到#menu li#menu li a JS Fiddle

#menu li {
display: inline-block;
margin-right:50px;
}

关于html - 如何在 CSS/HTML 中的菜单项之间留出空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33880717/

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