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

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

王林
Release: 2020-04-13 09:17:59
forward
3140 people have browsed it

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>
Copy after login

(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>
Copy after login

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!

Related labels:
source:jb51.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template