範例必讀 (一)[流體佈局-隨窗口改變大小]


 line-height屬性 : 控制行高


* {padding:0;

   margin:0;

  }



index.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=gb2312"/>
<title>流體佈局</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="header">
<h1>標題</h1>
</div>
<div id="nav">
<ul>
	<li>AA</li>
	<li>BB</li>
	<li>CC</li>
	<li>DD</li>
	<li>EE</li>
	<li>FF</li>
</ul>
</div>
<div id="main">
<p>北京時間2月3日消息,據國外媒體報道,Facebook作爲世界上最大的在線社交網絡,估值高達1000億美元,而在它進行首次公開募股(IPO)後,必將有很多人從中受益。路透社給出了Facebook上市的受益人及機構,並逐一進行了分析</p>

</div>
<div id="navr">
<ul>
	<li>AA</li>
	<li>BB</li>
	<li>CC</li>
	<li>DD</li>
	<li>EE</li>
	<li>FF</li>
</ul>
</div>
<div id="footer">
<p>powered by wordpress.</p>
</div>



stylecss:

*{
	margin:0;
	padding:0;
}
body{
	background:white;
}
#header{
	border:1px solid black;
	height:60px;
	line-height:60px;    
	margin-bottom:10px;
}
#header h1{
	font-size:16px;
	text-align:center;
	height:100%;
	margin-bottom:10px;
}
#nav{
	border:1px solid black;
	width:20%;
	height:300px;
	float:left;
	margin-bottom:10px;
}
#nav ul{
	text-align:center;
	line-height:150%;
}
#main{
	border:1px solid black;
	width:55%;
	height:300px;
	float:left;
	margin-bottom:10px;
	margin-left:2%;
	
}
#main p{
	padding:10px;
	text-indent:34px;
	letter-spacing:2px;
	line-height:150%;
}
#navr{
	border:1px solid black;
	width:20%;
	height:300px;
	float:right;
	margin-bottom:10px;
}
#navr ul{
	text-align:center;
	line-height:150%;
}
#footer{
	border:1px solid black;
	height:60px;
	line-height:60px;
	clear:both;
}
#footer p{
	text-align:center;
}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章