多人伦交性欧美,卡1卡2卡3乱码欧美,一个人免费观看高清视频,亚洲国产成人久久综合一区77,欧美性性性性xxxxoooo

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

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

第一種方法:

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