好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

htmlcss布局的问题_html/css_WEB-ITnose

html css

看下面的html css 。
1, id="right"的div 为什么顶部没有和id="left"的div顶部对齐?
2, 我想让id="center"的div占据parent div里除left div和right div 以外的空间(如下图所示),怎么做?







body div{
margin: 0;
padding; 0;
}

#parent{
margin: 0 auto;
padding : 0;
width : 500px;
height : 500px;
outline: solid blue;
position : relative;
}

#left{
float: left;
width : 150px;
height: 150px;
outline:solid red;
}

#right{
float: right;
top: 0;
width : 150px;
height: 150px;
outline:solid yellow;
}

#center{
outline: solid;
}

.clear{
clear: both black;
}






left

查看更多关于htmlcss布局的问题_html/css_WEB-ITnose的详细内容...

  阅读:37次