偶数个和奇数个li标签单独设置样式

  • Post author:
  • Post category:其他


.center_top_right ul li:nth-child(odd){   //奇数
    list-style: none;
    width: 90px;
    height: 70px;
    float: right;
}
.center_top_right ul li:nth-child(even){   //偶数
    list-style: none;
    width: 10px;
    height: 70px;
    color: #666;  
    float: right;
}



版权声明:本文为xiaojinguniang原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。