gpt4 book ai didi

css - 带有图像的干净箭头下划线菜单

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

我在 dynamic drive 中找到了这个菜单.这使用 CSS 三 Angular 形技术工作。现在我需要根据图像编辑它。我的意思是在 LI 的中心替换了图像背景而不是 CSS 三 Angular 形技术。HTML :

<ul class="arrowunderline">
<li><a href="http://www.dynamicdrive.com">Home</a></li>
<li><a href="http://www.dynamicdrive.com/new.htm">New</a></li>
<li class="selected"><a href="http://www.dynamicdrive.com/revised.htm">Revised</a></li>
<li><a href="http://tools.dynamicdrive.com">Tools</a></li>
<li><a href="http://tools.dynamicdrive.com/style/">CSS</a></li>
<li><a href="http://www.dynamicdrive.com/forums/">Forums</a></li>
</ul>

CSS:

ul.arrowunderline{
list-style-type:none;
margin:0;
padding:0;
text-align:center; /* enter "left", "right", or "center" to orient the menu accordingly */
font: bold 16px Georgia;
}

ul.arrowunderline li{
display:inline;
margin-right:25px; /* spacing between each menu item */
}

ul.arrowunderline li a{
position:relative;
color:black;
padding-bottom:8px; /*spacing between each menu item and arrow underline beneath it */
text-decoration:none;

}

ul.arrowunderline li a:hover{
border-bottom:3px solid purple; /* style of arrow underline */
}

ul.arrowunderline li a:hover:after{ /* use CSS generated content to add arrow to the menu */
content:'';
width:0;
height:0;
position:absolute;
left:50%;
margin-left:-5px; /* value should match border-width below */
bottom: 0;
border-width:5px; /* value should match margin-left above */
border-style:solid;
border-color: transparent transparent purple transparent; /* create up arrow */
}

图像替换为: enter image description here

也许我就是这样工作的。有没有更好的办法?其他方式!

感谢您的帮助。

最佳答案

a:hover:after 而不是边框​​中提供您的图像。

检查这个http://jsfiddle.net/vr7dG/3/

关于css - 带有图像的干净箭头下划线菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9580636/

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