99资源 在线视频|美女人妻自慰淫叫|日韩欧美乱伦电影|超碰按摩国产超碰|av全球免费不卡|加勒比无码一区人妻|国产高清一区视频高清|一区二区三区精品伊人|无码加勒比人妻高清|久草中文在线一区蜜乳

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

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

第一種方法:

<!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>