字體:小 中 大 | |
|
|
2015/03/24 18:40:50瀏覽312|回應0|推薦0 | |
<style type="text/css"> *{ margin:0; padding:0; } .header,.contenter,.footer { /*選取此三DIV的類別*/ width:85%; margin:0 auto; } .header { background-color: #FF9; height:100px; } .content { background-color: #6FF; height:400px; left:0; margin-right:200px; } .side { background-color: #0F0; width:200px; position:absolute; top:0; right:0; } .contenter { background-color: #F9F; position:relative; } .footer { background-color: #FC3; } </style> </head>
<body> <div class="header"> header </div> <div class="contenter"> <div class="content">content </div> <div class="side">side </div> </div> <div class="footer"> footer </div> </body> |
|
( 知識學習|隨堂筆記 ) |