首页 > 代码库 > css-3列布局

css-3列布局

三列布局的步骤是,先定义左右两侧,然后定义中间,并设置‘中间‘部分的‘margin‘属性.例如:

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 5 <style> 6 body { margin:0;} 7 #content { width:470px; margin:0 auto;} 8 #side { background: #99FF99; height: 300px; width: 120px; float: left; } 9 #side1 { background: #99FF99; height: 300px; width: 120px; float: right; }10 #main { background: #99FFFF; height: 300px; margin:0 120px; }11 </style>12 </head>13 <body>14 <div id="content">15   <div id="side">此处显示 id "side" 的内容</div>16   <div id="side1">此处显示 id "side1" 的内容</div>17   <div id="main">此处显示 id "main" 的内容</div>18 </div>19 </body>20 </html>

 的运行结果为:技术分享

css-3列布局