当前位置:Gxlcms > html代码 > DIV+CSS实现左右分栏_html/css_WEB-ITnose

DIV+CSS实现左右分栏_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:231人阅读


侧边栏


主体内容
aaa
sss


#leftBodyer {
width:160px; /*设定宽度*/
text-align:left; /*文字左对齐*/
float:left; /*浮动居左*/
clear:left; /*不允许左侧存在浮动*/
overflow:hidden; /*超出宽度部分隐藏*/
background-color: #66cc33;
}

#mainBodyer
{
width: 570px;
text-align: left;
float: right; /*浮动居右*/
clear: right; /*不允许右侧存在浮动*/
overflow: hidden;
background-color: #ff9933;
}

人气教程排行