gpt4 book ai didi

html - 导航栏扩展可点击区域

转载 作者:行者123 更新时间:2023-11-28 17:03:16 25 4
gpt4 key购买 nike

我一直在研究 HTML 和 CSS,但遇到了问题。如何使左右填充也具有链接属性?

<div class="baraNavigatie">
<ul class="lista">
<li><a href="default.html">Bine ati venit!</a></li>
<li><a href="cinesunt.html">Cine sunt?</a></li>
<li><a href="ceofer.html">Ce ofer?</a></li>
<li><a href="evenimente.html">Evenimente</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>

^部分HTML代码^

li{
font-size:25px;
display:inline;
padding-left:40px;
padding-right:40px;
}
.baraNavigatie{
height:33px;
background-color:blue;
text-align:center;
}
li a{
text-decoration:none;
color:white;
font-weight:bold;
font-family: 'Avant Garde', Avantgarde, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}
li:hover{
background-color:#6a92ff;
}

^CSS^

也很抱歉我的英语不好。

最佳答案

简单 - 只需应用 padding-leftpadding-right<a>元素而不是 <li> . The <a> tag creates a clickable link .

试试这个:

li {
font-size:25px;
display:inline;
}
.baraNavigatie {
height:33px;
background-color:blue;
text-align:center;
}
li a {
padding-left:40px;
padding-right:40px;
text-decoration:none;
color:white;
font-weight:bold;
font-family: 'Avant Garde', Avantgarde, 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}
li:hover {
background-color:#6a92ff;
}

关于html - 导航栏扩展可点击区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30823539/

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