问答详情
源自:13-9 Relative与Absolute组合使用

相对参照元素进行定位

例如:

#box3{
    width:200px;
    height:200px;
    position:relative;           
}
#box4{
    width:99%;
    position:absolute;    
    bottom:0;
    left:0; /*这条css样式可以省略*/        }

这里面的bottom:0 和bottom:0px 有什么区别吗?

提问者:慕哥4173249 2016-06-17 16:31

个回答

  • 慕粉3510222
    2016-06-17 16:44:47
    已采纳

    0和0px没有区别,0只有1个字节,0px有三个字节,为了让你的网页代码简化。

  • 慕雪5069845
    2016-06-17 16:58:54

    没有区别!!!!

  • 慕粉7682810
    2016-06-17 16:43:41

    没有区别吧-。-