css: 全屏显示样式图片滚动

2021-01-26 08:13

阅读:575

标签:样式   pos   back   idt   ict   code   over   默认   ext   

.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}
.screen-content {
    width: 95%;
    height: 100%;
    margin: 20px auto;
    overflow-y: auto;
}

.screen-content .screen-picture {
    position: relative;
    text-align: center;
}

设置height:100%,overflow: auto.

隐藏默认滚动条:

.screen-content::-webkit-scrollbar {
    display: none;
}

 

css: 全屏显示样式图片滚动

标签:样式   pos   back   idt   ict   code   over   默认   ext   

原文地址:https://www.cnblogs.com/Nyan-Workflow-FC/p/13232374.html


评论


亲,登录后才可以留言!