成 人 黄 色 片 在线播放I久操免费视频I9999在线观看I欧美日韩一区二区三区视频I亚洲激情视频I天天综合五月天I色婷婷综合激情I婷色

網(wǎng)頁布局——左側(cè)固定,右側(cè)自適應

2016/12/23 8:40:08   閱讀:1966    發(fā)布者:1966

第一種方法:

<!DOCTYPE> 
<html lang="en"> 
<head> 
<meta charset="UTF-8"> 
<title>Document</title> 
<style> 
.one { 
position: absolute; 
height: 200px; 
width: 300px; 
background-color: blue; 
} 
.two { 
height: 200px; 
margin-left: 300px; 
background-color: red; 
} 
</style> 
</head> 
<body> 
<div class="one"></div> 
<div class="two">第一種方法</div> 
</body> 
</html>

 

第二種方法:

<!DOCTYPE> 
<html lang="en"> 
<head> 
<meta charset="UTF-8"> 
<title>Document</title> 
<style> 
.one { 
float:left; 
height: 200px; 
width: 300px; 
background-color: blue; 
} 
.two { 
overflow: auto; 
height: 200px; 
background-color: red; 
} 
</style> 
</head> 
<body> 
<div class="one"></div> 
<div class="two">第二種方法</div> 
</body> 
</html>