码迷,mamicode.com
首页 > Web开发 > 详细

CSS常用选择器记录-:nth-of-type(n)

时间:2017-08-24 15:31:32      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:no-repeat   blog   idt   item   pre   关键词   选择   find   icon   

:nth-of-type(n)

  • 选择器匹配属于父元素的特定类型的第 N 个子元素的每个元素.
  • n 可以是数字、关键词或公式。
.step_icon3 li.item{
    width: 30%;
    height: 40px;
    text-align: center;
    padding-top: 10px -5px 0px;
}
.step_icon3 li.item:nth-of-type(1){
    background:url(../img/find_pw_on_1.png)  no-repeat center right;
    background-size: 27px auto;
}

.step_icon3 li.item:nth-of-type(2){
    background:url(../img/find_pw_off_2.png)  no-repeat center center;
    background-size: 27px auto;
}
.step_icon3 li.item:nth-of-type(3){
    background:url(../img/icon_s3.png)  no-repeat center left;
    background-size: 27px auto;
}

 

CSS常用选择器记录-:nth-of-type(n)

标签:no-repeat   blog   idt   item   pre   关键词   选择   find   icon   

原文地址:http://www.cnblogs.com/alan-alan/p/7423223.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!