0

我在与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>
4

3 回答 3

0

需要关闭您的第一个div标签。

<div class="content"></div>
<div class="contentinside">something here</div>
于 2013-11-01T17:44:28.973 回答
0

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

<div class="content">
<div class="contentinside">something here</div></div>
于 2013-11-01T17:48:59.107 回答
0

尝试这个:

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

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

现在 .contentinside 的定位是相对于 .content 的。当然,正确检查结束标签、拼写错误等。

于 2013-11-02T12:39:37.257 回答