在我的网站中,当我改变高度时出现垂直滚动,怎么可能:
我的 html 如下:
<html>
<body>
<div class="wrapper">
<section>
<section class="tall-section">
</section>
<section>
</div>
<body>
</html>
CSS:
.tall-section{
height:1100px !Important;
}
这是它出现的时候。
但是,如果我删除tall-section
,则没有垂直滚动条,并且 css 采用以前设置的旧高度#wrapper > section > section
,即763px
.
我能做些什么来解决这个问题?