使用触摸设备(移动设备,触摸板等),我需要在滚动身体时设置页面的背景颜色:
我尝试设置HTML的背景颜色:
python3 chapterize.py 10004.txt --nochapters
它在电影中看到了。但是我需要在页面底部使用白色背景色。 html的background-image不能滚动关闭。我想过使用渐变。还有更好的方法吗?
答案 0 :(得分:1)
将背景设置为html时,它将应用于所有四个边框。如果您只想使用例如背景色顶部站点,向您的DOM中添加一个div
元素以显示在页面上方:
<div style="height:1000px;background:#00BD9C;margin-top:-1000px;position:fixed;width:100%;"></div>
那样,溢出颜色将只应用在顶部。
或者您也可以将其添加到纯CSS中:
html:before {
content: '';
position: fixed;
width: 100%;
height: 1000px;
top: -1000px;
background-color: tomato;
}