Home  >  Article  >  Web Front-end  >  How to add scrolling to div and hide scroll bar with css

How to add scrolling to div and hide scroll bar with css

王林
王林forward
2020-04-13 09:17:593043browse

How to add scrolling to div and hide scroll bar with css

css Add scrolling to the div and hide the scroll bar. The specific code is as follows:

In html

<div class="box">
    <div>下面内容会单独滚动</div>
    <div class="scroll">
        <div class="content">
            <p>1111111111111111</p>
            <p>222222222222222</p>
            <p>333333333333333</p>
            <p>4444444444444444</p>
            <p>1111111111111111</p>
            <p>222222222222222</p>
            <p>333333333333333</p>
            <p>4444444444444444</p>
        </div>
    </div>
</div>

(recommended tutorial: CSS tutorial)

css part:

<style>
    div{
        font-size: 15px;
        margin-bottom: 20px;
    }
    .content{
        height: 300px;v // 必须设定滚动部分的高度
        background-color: cadetblue;
        color: antiquewhite;
        overflow-x: hidden; /*x轴禁止滚动*/
             overflow-y: scroll;/*y轴滚动*/ 
    }
    .content::-webkit-scrollbar {
        display: none;/*隐藏滚动条*/ 
    }
    p{
        margin-bottom: 30px;
        font-size: 17px;
        color: #333;
    }
</style>

Related video tutorial recommendations: css video tutorial

The above is the detailed content of How to add scrolling to div and hide scroll bar with css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:jb51.net. If there is any infringement, please contact admin@php.cn delete