gpt4 book ai didi

html - 菜单的伪下划线选择器

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

我有一个水平列表菜单,我想在上面使用伪选择器:当您将鼠标悬停在菜单项上时,它应该有一条粗的彩色下划线。每个菜单项都有不同的宽度,其下划线效果应与该宽度相匹配

这是一个带有下划线菜单的示例网站:http://www.theblackswantheory.org/

这是我的 list :

<div id="other">
<div id="otherTable">
<ul id="ul1">
<li>Web Design</li>
<li>Graphic Design</li>
<li>Google Search Optimization</li>
</ul>
</div>
</div>

CSS:

#otherTable{
display: table;
margin: 0 auto;
}
#otherTable ul{
list-style: none;
}
#otherTable ul li{
display: inline;
margin: 10px;
}
ul#ul1{
color: #fff;
}

那么最好的方法是什么?我尝试了几件事但效果不佳(表格,下面带下划线的另一个列表等...)

如果可能的话,我希望它是纯 CSS 而没有 javascript...我相信是这样

谢谢

最佳答案

使用底部边框模拟下划线(参见 jsfiddle ):

#otherTable ul li:hover {
border-bottom: solid red 0.2em;
}

关于html - 菜单的伪下划线选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13178414/

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