admin管理员组文章数量:1346283
Hopefully a simple question, but I can't find an answer.
I have a vertically scrolling element within a wrapper with radius corners, giving the appearance of the scrollable element being viewed through a window. I would like to keep the vertical scrollbar, but as it's the full height of the wrapper, the ends appear over the curved corners.
I'd like to reduce the scale of the scrollbar so it's about 20px shorter than the wrapper height, so the curved corners remain visible.
::-webkit-scrollbar gives a lot of options, but none seem to alter the track length/scale. Can it be done?
Example of the issue here:
<style>
.tablescroll {
max-width: 946px;
height: calc(100vh - 200px);
top: 300px;
margin: auto;
border: 1px solid #900;
border-radius: 15px;
box-shadow: inset 5px 5px 3px #888;
background-color: #ccc;
overflow-x: hidden;
overflow-y: scroll;
padding: 10px 0px;
}
table.enthcompare {
position: static;
width: 926px;
border-collapse: separate;
border-spacing: 10px 0px;
vertical-align: top;
}
</style>
<div class="tablescroll">
<table class="enthcompare">
<tr>
<td>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
</td>
</tr>
</table>
Hopefully a simple question, but I can't find an answer.
I have a vertically scrolling element within a wrapper with radius corners, giving the appearance of the scrollable element being viewed through a window. I would like to keep the vertical scrollbar, but as it's the full height of the wrapper, the ends appear over the curved corners.
I'd like to reduce the scale of the scrollbar so it's about 20px shorter than the wrapper height, so the curved corners remain visible.
::-webkit-scrollbar gives a lot of options, but none seem to alter the track length/scale. Can it be done?
Example of the issue here: https://codepen.io/Juggers2k/pen/WbNLqYx
<style>
.tablescroll {
max-width: 946px;
height: calc(100vh - 200px);
top: 300px;
margin: auto;
border: 1px solid #900;
border-radius: 15px;
box-shadow: inset 5px 5px 3px #888;
background-color: #ccc;
overflow-x: hidden;
overflow-y: scroll;
padding: 10px 0px;
}
table.enthcompare {
position: static;
width: 926px;
border-collapse: separate;
border-spacing: 10px 0px;
vertical-align: top;
}
</style>
<div class="tablescroll">
<table class="enthcompare">
<tr>
<td>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
</td>
</tr>
</table>
Share
Improve this question
asked 2 days ago
Mike WestMike West
378 bronze badges
1 Answer
Reset to default 1::-webkit-scrollbar
is a non-standard feature therefore even if it could solve your issue it would not be recommended.
The simplest reliable solution would be to add an intermediate div that takes care of the scroll and having the outer div clip the excess scrollbar. If you wish to "decrease the scrollbar track length" you can just add padding to the outer div.
.tablescroll {
max-width: 946px;
height: calc(80vh);
top: 300px;
margin: auto;
border: 1px solid #900;
border-radius: 15px;
box-shadow: inset 5px 5px 3px #888;
background-color: #ccc;
overflow: hidden;
}
.tablecontain {
overflow-x: hidden;
overflow-y: scroll;
height: 100%;
}
table.enthcompare {
position: static;
width: 926px;
border-collapse: separate;
border-spacing: 10px 0px;
vertical-align: top;
}
top: 300px;
margin: auto;
border: 1px solid #900;
border-radius: 15px;
box-shadow: inset 5px 5px 3px #888;
background-color: #ccc;
overflow: hidden;
}
.tablecontain {
overflow-x: hidden;
overflow-y: scroll;
height: 100%;
}
table.enthcompare {
position: static;
height: fit-content;
width: 926px;
border-collapse: separate;
border-spacing: 10px 0px;
vertical-align: top;
}
<div class="tablescroll">
<div class="tablecontain">
<table class="enthcompare">
<tr>
<td>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
blah<br>
</td>
</tr>
</table>
</div>
</div>
本文标签: htmlCan you decrease the scrollbar track length with CSSStack Overflow
版权声明:本文标题:html - Can you decrease the scrollbar track length with CSS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743826176a2545678.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论