HTML:当正文内容大于页面时,页面宽度会增加

时间:2017-10-01 09:32:59

标签: html css scroll height width

我遇到的问题是我有两个页面,一个内容大于页面高度的页面(您需要向下滚动的页面),另一个页面的内容小于页面的高度。

在向下滚动页面宽度的页面(包括页眉,页脚和正文)增加1px。但是在没有向下滚动的页面上,这不会发生。

这是向下滚动页面的代码:



html, body {
  opacity: 1;
  padding: 0;
  margin: 0;
  height: 100%;
  transition: 0.7s opacity;
}

body.fade-out {
  opacity: 0;
  transition: none;
}

a {
  color: black;
}

.Menu, .Menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 25%;
}

.Menu li {
  width: 15em;
}

.Menu li ul {
  position: absolute;
  left: -999em;
}

.Menu li:hover ul {
  left: auto;
}

.Menu li:hover ul, .Menu li.sfhover ul {
  left: auto;
  background-color: green;
}

.Menu a {
  color: black;
  text-decoration: none;
  display: block;
}

.Menu a:hover {
  background-color: #dcefdc;
}

.Menu div a {
  padding-top: 10px;
}

.Menu div a:hover {
  height: 50px;
}

#container {
  min-height: 100%;
  position: relative;
}

#header {
  border-top:3px solid #242729;
  align-content: center;
  background-color: #5f5f5f;
  width: 100%;
  height: 90px;
  font-family: TheLightFont;
  font-size: 37px;
  letter-spacing: 3px;
  color: #555555;
  display: block;
  margin: auto;
}

#divmen {   
 font-family: TheLightFont;
 font-size: 150%;
}

#logo {
  align-content: center;
}

#Title {
  width: 100%;
}

#body {
  padding: 0.1px;
  padding-bottom: 60px; /* Height of the footer */
}

#divcon {
  display: block;
  margin-left: 37%;
  margin-top: 6em;
  font-family: TheLightFont;
  padding-bottom: 100px;
}

#footer {
  background-color: #242729;
  width: 100%;
  height: 110px;
  position: absolute;
  bottom: 0px;
  font-family: Hangar;
}

/*----------fonts----------*/

@font-face { 
  font-family: TheLightFont; 
  src: url('TheLightFont.ttf');
}

@font-face {
  font-family: Hangar;
  src: url('HANGAR_flat.ttf');
}

.Menu { 
  float: left;
  text-align: center;
  background-color: #4CAF50;
}

.Menu div a.current{
  height: 50px;
}

.Menu a.current {
  background-color: #242729;
  color: white;
}

<div id="container">
  <div id="header"><!-content here-></div>
  <div id="body">
    <div id="divmen"><!-content here-></div>
    <div id="divcon"><!-content here-></div>
  </div>
  <div id=footer><!-content here-></div>
</div>
&#13;
&#13;
&#13;

没有滚动的网页代码相同,但<divcon>内容较少。

1 个答案:

答案 0 :(得分:0)

在查看我的代码之后,我发现问题出在哪里,之后我就改变了 .Menu li值可以解决问题的宽度。