焦點(diǎn)圖下面的小圓點(diǎn)沒有出來
#buttons {
position:absolute;
left:90px;
top:230px;
z-index:1;
width:100px;
height:10px;
}
#buttons span{
border-radius:10px;
width:20px;
height:20px
border:1px solid #fff;
float:left;
margin:0 5px;
background:#333;
}
#buttons .on {
background:#F30;
}
2018-07-13
span是內(nèi)聯(lián)元素,設(shè)置寬高、內(nèi)邊距、外邊距都沒有效果,將它的display="inline-block",這樣設(shè)置就好了
2018-03-04
沒有全代碼,看不出來
2018-03-04
buttons在list的上方顯示,#buttons的z-index值應(yīng)該要大于#list的z-index