css 设置兄弟元素的最后一个的样式
时间:2020-01-07 14:24:55
收藏:0
阅读:568
都有的样式
.meeting-date {
/* height: 60px; */
display: flex;
flex-direction: column;
justify-content: center;
border-bottom: 1px solid rgba(254,254,254, 0.2);
padding:10px 0 ;
}
最后一个样式:
.meeting-date:last-child { border-bottom:0; }
原文:https://www.cnblogs.com/guangzhou11/p/12160513.html
评论(0)