我正在尝试更新我的网站,但是由于没有滚动条,内容从屏幕上溢出并且看不见了。您可以在caves.neocities.org看到。
我尝试以margin
的CSS样式使用padding
和body
,但是没有任何作用。
这是body
和页面的CSS。我网站上的div
几乎都是一样的,而div
溢出的HTML是这样的:
body {
color: black;
font-family: Courier;
overflow: scroll;
}
.main1 {
background-image: linear-gradient(#000000, #435454);
border: double;
border-color: #D2EFEF;
width: 600px;
margin: 0 auto;
margin-top: 50px;
}
<div class="browse">
<center> Site Links </center> <br>
<hr> testing, once again!
</div>
答案 0 :(得分:1)
您的错误:::
.weather.min.css中的.weather类覆盖了您的CSS规则;
.weather {
position: relative;
overflow: hidden;
}
尝试一下:::
body {
color: black;
font-family: Courier;
overflow-y: auto !important;
}
答案 1 :(得分:0)
.weather.css中的.weather类覆盖了您的CSS规则,对溢出规则应用!important。
答案 2 :(得分:0)
尝试一下:
.weather {
position: relative;
overflow-x: hidden;
}
或
body {
color: black;
font-family: Courier;
overflow-y: scroll!important;
}