gpt4 book ai didi

jquery - 如何从最后一个列表项中删除边框并选择 :nth-child (multiple items)

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

如何选择第三个链接去除右边框?前三个是文本链接,我想从最后一个文本链接中删除右边框。最后两个是按钮。我也不想要按钮之间或按钮末尾的边框。我不敢相信我遇到了多少麻烦。它可能是一个简单的解决方案,但我花了很长时间才为浏览器弄明白。谢谢。

Javascript

<script language="javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script language="javascript">
$(document).ready(function() {
$("ul.subnavigation li:nth-child(3)").addClass("last-child");
});
</script>

HTML

<ul class="subnavigation">
<li><a href="$sign_in_url" id="Program" rel="nofollow" ></a>Program </li>
<li><a href="$sign_in_url" id="About" rel="nofollow" >About </a> </li>
<li><a href="$sign_in_url" id="faq" rel="nofollow" >How to/FAQs</a> </li>
<li><a href="$sign_in_url" id="register" rel="nofollow" class="btn_register hide-text">Register</a> </li>
<li><a href="$sign_in_url" id="signin" rel="nofollow" class="btn_signin hide-text">Sign in</a></li></ul>

CSS

ul.subnavigation {  
font-family:Arial, sans-serif;
font-weight:bold;
font-size:16px;
color:#333333;
list-style:none;
}

.subnavigation li{
display:inline;
border-right:1px solid #ccc;
}

.subnavigation li:last-child{
display:inline;
border-right:0px;
}


.last-child {border:none;}

.subnavigation li a {
text-decoration:none;
padding:0 10px 0 10px;
line-height:18px;

}

.subnavigation li a:hover {
color:#2274ac;
}


.subnavigation a.btn_register {
background:url(../images/nt_btn-register.png) no-repeat;
width:66px;
height:23px;
display:inline-block;
margin:0 5px 0 0;
float:right;
text-indent:-999px;
}

.subnavigation a.btn_signin {
background:url(../images/nt_btn-signin.png) no-repeat;
width:56px;
height:23px;
display:inline-block;
margin:0 10px 0 5px;
float:right;
text-indent:-999px;
}

.hide-text {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
}

JS FIDDLE here

最佳答案

您不需要 jQuery。这是纯 CSS - DEMO

.subnavigation li:nth-child(n+3) {
border: 0;
}

更新

以上代码在旧版 IE-s 中不起作用 - :nth-child browser support

要使其向后兼容,您仍然必须使用 jQuery - DEMO

$(function() {
$(".subnavigation").find("li:gt(1)").css("border", 0);
});

关于jquery - 如何从最后一个列表项中删除边框并选择 :nth-child (multiple items),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12609941/

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