久久精品视频只有这里-插入女人小穴视频在线观看-日韩欧美精品在线观看免费-综合亚洲欧美日韩综合久久

網頁布局——左側固定,右側自適應

2016/12/23 8:40:08   閱讀:1789    發布者:1789

第一種方法:

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