我的DIV不会听我的

时间:2013-11-01 17:43:25

标签: html css

我的div与我的其他div保持联系是个问题。

无论我给出什么位置,div都会跳转到页面顶部或不显示。

CSS:

.content {
  width:100%;
  background: #F0F0F0;
  border: 1px solid #CCC;
  height: 1000px;
  margin: 0px auto;
}

.contentinside {
  postition: relative;
  margin: auto;
  width: 960px;
  height: 200px;
  background-color:#000099;
}

HTML:

<div class="content">
<div class="contentinside">something here</div>

3 个答案:

答案 0 :(得分:0)

需要关闭您的第一个div代码。

<div class="content"></div>
<div class="contentinside">something here</div>

答案 1 :(得分:0)

你需要将你的第一个div放在另一个div中,如下所示..你错过了第二个div的结尾

<div class="content">
<div class="contentinside">something here</div></div>

答案 2 :(得分:0)

试试这个:

.content {
  position: relative;
  /* rest of your styles */
}

.contentinside {
  position: absolute;
  /* rest of your styles */
}

现在.contentinside的定位与.content相关。 当然,请正确检查关闭标签,拼写错误等。