Bootstrap单页导航流体站点最小化问题

时间:2015-04-02 08:47:35

标签: javascript jquery html css twitter-bootstrap

使用完整窗口并使用响应式引导程序布局动态地将其高度和宽度更改为设备屏幕分辨率时,此页面正常工作。我的问题是,当页面被最小化时,它会丢失它的容器,你可以看到它完全混乱。

有人可以告知问题是什么。

谢谢

1 个答案:

答案 0 :(得分:1)

    .intro-section {
  /* height: 100%; */ < Remove the 100% height
  padding-top: 150px;
  text-align: center;
  background: #fff;
}

.about-section {
  /* height: 100%; */ < Remove the 100% height
  padding-top: 150px;
  text-align: center;
  background: #eee;
}

.services-section {
  /* height: 100%; */ < Remove the 100% height
  padding-top: 150px;
  text-align: center;
  background: #fff;
}

在移除这些高度后,它应该以任何尺寸正常显示,即使我最小化它:)

相关问题