為什么我這樣不能實現第三個div 靠右?
<!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 210px 0 310px; background:#9CF}
.right{ width:300px; height:600px;position:absolute; right 0;top:0;background:#FCC}
</style>
</head>
<body>
? ??
? ? <div class="left">left</div>
? ? <div class="main">設計首頁的第一步是設計版面布局。就象傳統的報刊雜志編輯一樣,我們將網頁看作一張報紙,一本雜志來進行排版布局。 雖然動態網頁技術的發展使得我們開始趨向于學習場景編劇,但是固定的網頁版面設計基礎依然是必須學習和掌握的。它們的基本原理是共通的,你可以領會要點,舉一反三。</div>
? ? <div class="right">right</div>
</body>
</html>
2016-04-21
樓主代碼共有兩處錯誤:
.right{ width:300px; height:600px;position:absolute; right 0;top:0;background:#FCC},
其中,right ?0,中間漏掉了一個冒號,修改為right:0(注意為英文冒號),
應為:
.right{ width:300px; height:600px;position:absolute; right:0;top:0;background:#FCC}
.main{ height:600px;margin:0 210px 0 310px; background:#9CF}
盒模型中margin 值得順序是 上、右、下、左,應修改為
.main{ height:600px;margin:0 310px 0 210px; background:#9CF}
2016-04-21
.main{}中你的margin設置有誤,應該是margin:0px 310px 0px 210px