为了账号安全,请及时绑定邮箱和手机立即绑定

跟着老师在做,遇到一个问题,使用css3选择器,尽然不生效,但是又找不到问题处在哪里,好头疼

CSS:

<style type="text/css">

.tit>li a{display: inline-block; float: left; width:60px;height: 27px;

text-align: center;border-right: 1px solid #eee;

border-bottom: 1px solid #eee;line-height: 27px;

text-decoration: none;background-color: #F7F7F7;}

.tit>li a:last-of-type{background-color: red;}

</style>

HTML代码:

<ul class="tit">

<li><a href="">公告</a></li>

<li><a href="">规则</a></li>

<li><a href="">论坛</a></li>

<li><a href="">安全</a></li>

<li><a href="">公益</a></li>

</ul>


正在回答

2 回答

你是指.tit>li a:last-of-type{background-color: red;} 这个属性出了问题吗?你这样写,所有的A标签的背景都会是红色,last-of-type的效果是指定最后一个元素的属性。如果你是想让最后一个A标签背景为红色,应该这样写    .tit>li:last-of-type a{background-color: red;} 。。

0 回复 有任何疑惑可以回复我~
#1

feibenren 提问者

非常感谢!
2015-04-07 回复 有任何疑惑可以回复我~

.tit>li a:last-of-type是指.tit下的第一个li标签下的最后一个a;

你应该是想表达tit>li:last-of-type a 吧

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

跟着老师在做,遇到一个问题,使用css3选择器,尽然不生效,但是又找不到问题处在哪里,好头疼

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信