html - 无法将 1 个 div 置于另一个之下

标签 html css twitter-bootstrap

我创建了名为“footer”的 div,它在页面加载时始终显示在底部,在向下滚动时显示在顶部。现在我正在尝试使用 col-6-lg(bootstrap) 定位 2x 文本字段,它们应该在“页脚”下并且在滚动后可见。

body{
    background-image: url("../img/bg.png");
    background-size: cover;
    background-color: #01383b;
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

#content {
    background: #D0E5FF;
    padding: 20px;
    color: #00214B;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.8;
}
#footer {
    opacity: 0.8;
    filter: alpha(opacity=40);
    background: rgb(14, 122, 128);
    line-height: 2;
    text-align: center;
    color: #042E64;
    font-size: 30px;
    font-family: sans-serif;
    font-weight: bold;
    text-shadow: 0 1px 0 #84BAFF;
    box-shadow: 0 0 15px #00214B
}

#button1{
    margin-top: 15px;
}

#button2{
    margin-top: 15px;
    margin-left: 95px;
}

.cd-container {
  width: 90%;
  max-width: 768px;
  margin: 2em auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);

  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #3cd8e1 url(../img/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #3cd8e1;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

.content{
    font-family: 'Open Sans';
    color: #fff;
}
<div id="footer">
   <div class="container">
      <div class="col-lg-8 col-lg-offset-2 text-center">
         <input type="image" src="img/true.png" alt="Submit" width="78" height="78" id="button1">
         <input type="image" src="img/false.png" alt="Submit" width="78" height="78" id="button2">
      </div>
      <div class="col-lg-4 pull-right">
         <a href="#0" class="cd-top cd-is-visible">Top</a>
      </div>
   </div>
</div>
<div class="container">
   <div class="col-lg-6 pull-left text-center">
      <h1>Да, това е!</h1>
   </div>
   <div class="col-lg-6 pull-left text-center">
      <h1>Не, това е Lorem Ipsum</h1>
   </div>
</div>

最佳答案

所以这是可能的解决方案。 您可以将两个框(页脚和底部容器)包装到,我们称之为:页脚包装。 然后,设置 .footer-wrap {position: absolute;bottom: 0;width: 100%;} 并从您的样式中删除#footer 的定位类。

 /* #footer {
     position: absolute;
     bottom: 0;
     width: 100%;
   }*/

设置:

 .footer-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
 }

这是一个演示:https://jsfiddle.net/xvwqt9a0/

这里还有一个带有您的样式和 html 的演示:https://jsfiddle.net/xvwqt9a0/1/

关于html - 无法将 1 个 div 置于另一个之下,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33214209/

相关文章:

javascript - 如何做到当我双击 div 时,它不会选择该单词?

javascript - 如何修复覆盖不打开灯箱的 : image gallery, 图像

html - 使用 Bootstrap 将按钮放置在 div 下方而不是其左侧

html - CSS - 背景图像出现在我的机器上,但没有出现在我网站的托管版本上……为什么?

jquery - 如何制作下拉菜单控制<audio>标签

javascript - html5 地理定位方法 position.address.city 是否仅适用于 Firefox

html - 在图像上设置叠加图像

html - SB Admin 2 Navbar 在删除一些内容后不再折叠

css - Bootstrap 向右拉子导航

javascript - 获取 iframe 中的本地存储项