雨中伞 发表于 2013-2-8 01:08:50

CSS OVERFLOW AUTO

<style type="text/css"> 
<!-- 
    *{margin:0;padding:0;} 
    body{font:36px bold; color:#F00; text-align:center;} 
    #layout{background:#FF9;} 
#left{float:left;width:20%;height:200px;background:#DDD;line-height:200px;} 
    #right{float:right;width:30%;height:80px;background:#DDD;line-height:80px;} 
    .clr{clear:both;} 
--> 
</style> 
<div id="layout"> 
    <div id="left">Left</div> 
    <div id="right">Right</div> 
    <p class="clr"> 
</div>
页: [1]
查看完整版本: CSS OVERFLOW AUTO