css指定某个元素的样式


.imgs-item {
    position: relative;
    border: 1px solid #E0E3E6;
    margin-right: 30px;
    margin-bottom: 24px;
    // 第一个元素
    &:first-child{

//

    }
    // 最后一个元素
    &:last-child{
      margin-right: 0px;
    }
    // 第三个元素
    &:nth-child(3){

//

    }
    // 倍数
    &:nth-child(3n){
      margin-right: 0px;
    }
  }
 
 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM