gpt4 book ai didi

html - 悬停整个 li 而不是文本

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

我试图在鼠标悬停时创建一个链接,它会环绕整个 li,而不仅仅是文本本身,如果您明白我的意思的话。

如果我的 CSS 完全困惑,请提前致歉。

CSS:

#navi {
font-size:14px;
text-align:left;
text-transform:uppercase;

}

#navi ul {
padding: 5px;
margin: 0;
}

#navi li {
position:relative;
display:inline-block;
}

#navi a {
padding:.03em 1em;
text-decoration: none;
}

#navi a:hover {
background-color: #e0e0e0;
height: 50px;
}

索引:

<div id="navi">
<ul class="ul">
<li><a href="">Test 1</a></li>
<li><a href="">Test 1</a></li>
<li><a href="">Test 1</a></li>
</ul>
</div>

它的样子:

enter image description here

这是鼠标悬停时的样子:

enter image description here

有什么建议吗?我只是想让它绕着整个盒子转。谢谢!

最佳答案

你可以设置<a>作为显示: block ,并在那里应用垂直填充:http://codepen.io/anon/pen/nmqKr

#navi {
font-size:14px;
text-align:left;
text-transform:uppercase;
background:blue;
border-bottom:solid turquoise 5px;
}

#navi ul {
padding:0 5px;/* send vertical padding into a tag */
margin: 0;
}

#navi li {
display:inline-block;
}

#navi a {
padding:5px 1em;/* apply here the vertical-padding */
text-decoration: none;
display:block;/* take all width and have no gaps at bottom */
height:100%;
color:white;
}

#navi a:hover {
background-color: #e0e0e0;
color:black;
}

关于html - 悬停整个 li 而不是文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21652009/

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