-
給元素設置浮動或者絕對定位,這就是脫離文檔流布局
查看全部 -
.left{ width:200px; height:600px; background:#ccc; position:absolute; left:0; top:0} .main{ height:600px; margin:0 310px 0 210px; background:#9CF}(magin上右下左,順時針) .right{ width:300px; height:600px; position:absolute; right:0; top:0; background:#FCC;}
查看全部 -
<!DOCTYPE html> <html> <head> <title>css之一列布局</title> <style type="text/css"> body{ margin:0; padding:0; } .top{ width:1400px; height:35px; background:grey; } .main{ width:600px; height:400px; background-color:red; margin:0 auto; } .foot{ width:600px ; height:200px; background-color:blue; margin:0 auto; } </style> </head> <body> <div class="top"></div> <div class="main"></div> <div class="foot"></div> </body> </html>查看全部
-
三列布局 .left{ width:200px; height:600px; background:#ccc; position:absolute; left:0; top:0} .main{ height:600px; margin:0 300px 0 200px; background:#9CF} .right{ height:600px; width:300px; position:absolute; top:0; right:0; background:#FCC;查看全部
-
三列布局 .left{ width:200px; height:600px; background:#ccc;position:absolute; left:0; top:0} .main{ height:600px; 【任務2】 background:#9CF} .right{ height:600px; width:300px; position:absolute; top:0; right:0;查看全部
-
text-align:center(讓文字內容居中) line-height:50px(文字內容50像素)
查看全部 -
.top{height:100px;width:100%;background:gray;}
.main{width:800px;height:900px;background:yellow;}
.left{width:200px;height:900px;background:blue;position:absolute;left:0;top:100px;}
.right{width:600px;height:900px;background:green;margin-left:210px;}
.foot{height:100px;background:orange;}
查看全部 -
margin:0 auto上下距離為0,查看全部
-
.left{ width:200px; height:600px; background:#ccc; position:absolute; left:0; top:0} .main{ height:600px; margin:0 310px 0 210px; background:#9CF}(上右下左,順時針) .right{ width:300px; height:600px; position:absolute; right:0; top:0; background:#FCC;}
查看全部 -
<div>放在<body>結尾處需要清除浮動:clear: both
查看全部 -
絕對定位代碼為position:absolute;left:o;yop:0;
頂右底左;
查看全部 -
自適應設寬度時需要設百分比,浮動需要設float,固定寬度的設像素px,
查看全部 -
margin:0 auto 設置對象上下間距為0,左右自動
查看全部 -
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>混合布局編程挑戰</title>
<style type="text/css">
body{ margin:0; padding:0; font-size:30px; color:#fff}
.top{height:100px;background: grey;}
.main{height: 800px;background: red;}
.left{width: 33.2%;height: 800px;background: blue;float: left;}
.right{width: 66.4%;height: 800px;background: green;float: right;}
.foot{height: 50px;background: orange;}
</style>
</head>
<body>
<div class="top">top</div>
<div class="main">
? ? <div class="right">right</div>
? ? <div class="left">left</div>
</div>
<div class="foot">foot</div>
</body>
</html>
查看全部 -
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>三列布局</title>
<style type="text/css">
body{ margin:0; padding:0; font-size:30px; font-weight:bold}
div{ line-height:50px}
.left{ width:200px; height:600px; background:#ccc;? position:absolute; left:0; top:0}
.main{ height:600px; margin:0 310px 0 210px; background:#9CF}
.right{ height:600px; width:300px; position:absolute; top:0; right:0; background:#FCC;}
</style>
</head>
<body>
? ??
? ? <div class="left">left</div>
? ? <div class="main">設計首頁的第一步是設計版面布局。就象傳統的報刊雜志編輯一樣,我們將網頁看作一張報紙,一本雜志來進行排版布局。 雖然動態網頁技術的發展使得我們開始趨向于學習場景編劇,但是固定的網頁版面設計基礎依然是必須學習和掌握的。它們的基本原理是共通的,你可以領會要點,舉一反三。</div>
? ? <div class="right">right</div>
</body>
</html>
查看全部
舉報