在DIV中显示的滚动条。 CSS导致了什么?

时间:2012-10-15 20:53:13

标签: css

在这个网页上,我建立了一个滚动条似乎出现在#content DIV中,我似乎无法弄明白为什么。

指向页面的链接:http://dev.textcube.ch/oneandonly/index.php/hunde/nuri/(用户名:textcube /密码:textcube3600)

#content的CSS没有任何可能导致这种情况的设置高度,也不会溢出:scroll;。

#content {
font-family: Arial, Helvetica, sans-serif;
font-size: 100%;
width: 400px;
margin: 0px;
background: url(../images/content-bg.png) no-repeat;
margin-top: 10px;
margin-left: 100px;
float: left;
padding: 80px 50px 0px 50px;
}

关于导致这种情况的任何想法?理想情况下,我想知道如何删除此滚动条,并让内容一直向下。

1 个答案:

答案 0 :(得分:1)

这个CSS造成了它。由于内容长于270px,因此会显示滚动条。

<style type="text/css"> 
#blockStyle404MainArea9 {
  background-repeat:no-repeat;
  max-height: 270px;
  over-flow: auto;
  overflow-x: hidden;
  overflow-y: scroll;
} 
</style>