DIV+CSS三列式布局的實現代碼

來源:互聯網
上載者:User

實現代碼如下:

 

<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>無標題文檔</title> 
<style type="text/css"> 
*{margin-right:auto;margin-left:auto;font-size:12px;} 
#layer {height: auto;width: 760px} 

#left   {float: left;height:300px;width: 200px;background-color:#DAF4FE;border:1px solid #E00;} 
#conter {float: left;height:300px;width: 460px;background-color:#FDF1C1;border:1px solid #E00;} 
#right  {float: left;height:300px;width: 100px;background-color:#DBFECF;border:1px solid #E00;} 

body {margin-top: 0px;margin-bottom: 0px;} 
</style> 
</head> 
<body> 
<div id="layer"> 
<div id="left">寬度為200</div> 
<div id="conter">寬度為460</div> 
<div id="right">寬度為100</div> 
</div> 
</body> 
</html>

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.