0

我正在创建一个网站,但我在定位 div 时遇到了一些问题。我content div没有定位在旁边navigation-bar div,即使我漂浮在他们两个左边。

这是HTML代码。

<head>
<link rel="stylesheet" type="text/css" href="theme.css">
</head>

<body>

<div id="title">
Sample Title
</div>


<div id="navigation-bar">
Home
<br>
<br>
Products
<br>
<br>
</div>

<div id="content">
content goes here
</div>

</body>

</html>

这是theme.css文件

#title
{
color: black;
padding: 20px;
font-size: 250%;
padding: 2%;
width: 70%;
height: 10%;
border: 4px solid blue;
}

#navigation-bar
{
background-color: #606060;
width: 15%;
height: 70%;
color: white;
text-align: center;
padding: 2%;
font-size: 80%;
border: 4px solid blue;
}

#content
{
border: 4px solid blue;
float: left;
width: 20%;
height: 70%;
}

问题是 thenavigation-bar divcontent divwont 位置彼此相邻,而是content div将自身定位在 下方navigation-bar div

谢谢。

4

2 回答 2

2

你在哪里float: left;使用#navigation-bar

#navigation-bar
{
   background-color: #606060;
   width: 15%;
   height: 70%;
   color: white;
   text-align: center;
   padding: 2%;
   font-size: 80%;
   border: 4px solid blue;
   float: left; <--- Add this Here
}
于 2012-12-22T20:22:08.723 回答
2

怎么加一个float: left#navigation-bar

演示

于 2012-12-22T20:21:51.123 回答