我无法使用 css 使我的页面可滚动
I can't make my page scrollable with css
我无法使我的页面可滚动。代码是:
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 link 是 https://github.com/nedzone/uht-yniversitet,请告诉我我的问题出在哪里以及如何解决这个问题?
如果一切都在 divMainbox 中进行,那么您不应该在其上设置高度。否则,它将不允许该容器根据内部内容的大小调整大小。否则,如果您确实想要该容器的特定高度,那么您应该向其添加 overflow-y: scroll;
而不是现在的 overflow: hidden;
。这将使您的容器具有高度,但也允许用户在其中滚动。或许这就是你的烦恼。
只需在 nachalna stanica.html 的第 23 行关闭 div,页面将开始滚动
<div id="triangle-down"></div>
我无法使我的页面可滚动。代码是:
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 link 是 https://github.com/nedzone/uht-yniversitet,请告诉我我的问题出在哪里以及如何解决这个问题?
如果一切都在 divMainbox 中进行,那么您不应该在其上设置高度。否则,它将不允许该容器根据内部内容的大小调整大小。否则,如果您确实想要该容器的特定高度,那么您应该向其添加 overflow-y: scroll;
而不是现在的 overflow: hidden;
。这将使您的容器具有高度,但也允许用户在其中滚动。或许这就是你的烦恼。
只需在 nachalna stanica.html 的第 23 行关闭 div,页面将开始滚动
<div id="triangle-down"></div>