关于固定定位代码的问题
#div1{
width:200px;
height:200px;
border:2px red solid;
position:fixed;
bottom:200;
right:200;
}
bottom和right为什么不加px,是0方框就在右下角。不是0方框就在左下角
#div1{
width:200px;
height:200px;
border:2px red solid;
position:fixed;
bottom:200;
right:200;
}
bottom和right为什么不加px,是0方框就在右下角。不是0方框就在左下角
2017-07-25
举报