美文网首页
div内容,超出隐藏 滚动

div内容,超出隐藏 滚动

作者: 偶头像超凶 | 来源:发表于2020-08-22 10:02 被阅读0次
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>超出部分隐藏滚动条</title>
</head>
<style type="text/css">
    #box {
        width: 500px;
        height: 300px;
        overflow-x: hidden; //横行超过隐藏
        overflow-y: scroll;  //纵行超过隐藏
        line-height: 30px;  //line-height和height相同也是居中
        text-align: center;  //文字横向居中
    }
    #box::-webkit-scrollbar {
        display: none;  //可以滚动
    }
</style>
<body>
    <div id="box">
        欢迎光临 </br>
        欢迎光临 </br>
        欢迎光临 </br>
        欢迎光临 </br>
        欢迎光临 </br>
        欢迎光临 </br>
        欢迎光临 </br>
    </div>
</body>
</html>

相关文章

网友评论

      本文标题:div内容,超出隐藏 滚动

      本文链接:https://www.haomeiwen.com/subject/laomjktx.html