html – 如何隐藏div中的滚动条

前端之家收集整理的这篇文章主要介绍了html – 如何隐藏div中的滚动条前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参见英文答案 > Hiding the scrollbar on an HTML page                                    20个
>            Hide scroll bar,but while still being able to scroll                                    26个
我已经创建了一个包含溢出内容可滚动的div,但是我希望它的滚动被隐藏但是div仍然可以滚动.


.description
{
    height: 150px;
    overflow: scroll;
}<div class="description"><h4>Description

最佳答案

您可以通过对其应用display:none来隐藏滚动条.尝试下面的CSS.

CSS:


::-webkit-scrollbar { 
    display: none; 
}

JSFiddle:https://jsfiddle.net/nikdtu/arn77mt1/

原文链接:https://www.f2er.com/html/426933.html

猜你在找的HTML相关文章