可以在不使用javascript的情况下在滚动条的顶部添加偏移量?

时间:2014-12-08 09:23:57

标签: html css scrollbar

我想通过CSS在视口顶部和滚动条顶端之间创建一个空格,在我的情况下,当滚动条出现时,它是带有infowindow的google地图(带有Infobox扩展名),“x”关闭按钮与滚动条重叠,请参阅下面的图片enter image description here

1 个答案:

答案 0 :(得分:0)

我使用此规则修复了此问题

body div#map-canvas ::-webkit-scrollbar-button:start:decrement
{
    display: block;
    height: 19px; // This will add the top offset 
    background-color: transparent;
}