久久久久久AV无码免费看大片,亚洲一区精品人人爽人人躁,国产成人片无码免费爱线观看,亚洲AV成人无码精品网站,为什么晚上搞的时候要盖被子

用css選擇除了最后一個(gè)元素的所有元素

時(shí)間:2021-07-03 09:24:46 類型:HTML/CSS
字號(hào):    

用css選擇選擇除了最后一個(gè)元素的所有元素

li:not(:last-child)

例如:

.postiton li:not(:last-child)::after{
	content: '/';
    position: absolute;
    right: 0;
    top: 0;
    line-height: 50px;
    font-size: 14px;
    color: #666;
    display: block;
    width: 20px;
    text-align: center;
}


<