我无法使我的页面可滚动。代码是:
body{
overflow-y: scroll;
margin: 0px;
padding: 0px;
}
#triangle-down { width: 0px; height: 0px;
border-left: 200px solid transparent;
border-right:200px solid transparent;
border-top: 230px solid white;
margin-left: 475px;
position:fixed;;
top: 65px;
z-index: -1;
}
div.topName {
margin-bottom:6px;
margin-left: 615px;
position: relative;
z-index:1;
}
body {
background-image: url("pictures/UHT_Plovdiv.png");
background-size: cover;
width: 50%;
background-color:0099CC;
}
div.boxwhitetop {
solid white ;
background-color: white;
width: 1200px;
height: 50px;
border-radius: 30px;
position: relative;
margin-left: 80px;
}
divMainbox{
border-radius: 35px;
background: white;
top: 7px;
left: -525px;
width: 1050px;
height: 1000px;
position:absolute;
text-align: center;
font-size: 25px;
overflow: hidden;
-webkit-animation: fadein 4.5s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 4.5s; /* Firefox < 16 */
-ms-animation: fadein 4.5s; /* Internet Explorer */
-o-animation: fadein 4.5s; /* Opera < 12.1 */
animation: fadein 4.5s;
overflow:hidden;
}
我的github链接是https://github.com/nedzone/uht-yniversitet,请告诉我我的问题在哪里以及如何解决此问题?
答案 0 :(得分:0)
如果divMainbox中有所有内容,那么你就不应该有高度。否则,它不会允许该容器根据内部内容的大小调整大小。否则,如果您确实需要该容器上的特定高度,那么您应该向其添加overflow-y: scroll;
而不是现在的overflow: hidden;
。这将允许容器具有高度,但也允许用户在其中滚动。也许这就是你的麻烦。
答案 1 :(得分:0)
在nachalna stanica.html中关闭第23行的div,页面将开始滚动
<div id="triangle-down"></div>