html如何设置左右滑动

话不多说,直接上代码:

 

css:

.xyhot {
    width: 100%;
    display: flex;
    margin-top: 15px;
    margin-right: -15px;
    padding-right: 5px;
    white-space: nowrap; 
    overflow-x: auto; 
    transform: translateZ(0);
    overflow-y: hidden; 
}

.xyhot::-webkit-scrollbar {
    display: none !important;
}

就可以了

你可能感兴趣的:(html,css,css3)