大神,能不能借帖问问题
自学刚起步,想知道为什麽我about这个div会掉下去?完全找不出原因,好挫折
<!DOCTYPE HTML>
<html lang="cn">
<head>
<meta charset="UTF-8">
<title>hello</title>
<meta content="test" name="description"/>
<link rel=stylesheet type="text/css" href="css/kj_index.css">
</head>
<body>
<div id="header">name</div>
<div id="content">
<div id="news">
hello word!<br>
</div>
<div id="about">
hello word2!<br>
</div>
</div>
<div id="nav"></div>
<div id="footer"></div>
</body>
</html>
以下是CSS
*{
margin:0;
padding:0;
}
body{
margin:0px auto;
width:750px;
background:#968FAF;
font-size:20px;
}
#header{
margin:2px auto;
padding:6px;
height:50px;
max-width:750px;
background:#E1E6FF;
}
#content {
margin:5px 0px;
height:auto;
background:#ffffff;
}
#news{
margin:5px 0px;
height:160px;
max-width:450px;
background:#C0C6DC;
}
#about{
margin:5px 0px;
font-size:0.8em;
max-width:290px;
float:right;
}