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;
    }
  }
 
 
原文地址:https://www.cnblogs.com/zxiaoyu/p/13966191.html