您的位置:首页 > Web前端 > HTML

html手机3列自适应

2016-04-22 09:46 316 查看
<style>

#left {

width:100px; background-color:blue;

height:100px; float:left;

}

#right {

width:50px; background-color:yellow;

height:100px;

float:right;

}

#main {

background-color:red; height:100%;

}

</style>

<div style="width:100%">

<div id="left">left </div>

<div id="right">right</div>

<!--main要写到最后一个-->

<div id="main">mian</div>

</div>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: