Bootstrap一页导航Fluid网站最小化问题

Bootstrap One Page Navigation Fluid site minimization problems

本文关键字:最小化 问题 网站 Fluid 一页 导航 Bootstrap      更新时间:2023-09-26

当使用完整窗口时,此页面运行良好,并使用响应引导布局根据设备屏幕分辨率动态更改其高度和宽度。我的问题是,当页面被最小化时,它会失去容器,正如你所看到的,它会把它完全搞砸。

有人能告诉我问题出在哪里吗。

感谢

    .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;
}

删除这些高度后,它应该以任何大小正常显示,即使你将其最小化:)