.slider .ctrl 当中的bottom:-13px是什么意思,为什么前面加“ - ”符号呢?
.slider .ctrl{
width:100%;
height:13px;
line-height: 13px;
text-align: center;
position:absolute;
left:0;
bottom:-13px;
background-color: #f00;
}
我调试了一下,bottom:-13px,与bottom:13px相比,要向下移动一些距离,这是为什么,为什么要用-13px呢?