.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;
}
}
