*{ margin: 0; padding: 0; box-sizing: border-box; } /* 设置滚动条宽度 */ ::-webkit-scrollbar { width: 0px; } /* 设置滚动条颜色 */ ::-webkit-scrollbar-thumb { background: #eee; } /* 设置滚动条被按住时的颜色 */ ::-webkit-scrollbar-thumb:hover { background: #ddd; } .box{ width:50vw; height:40vh; border:1px solid #ccc; margin:30vh 25vw; display:flex; } .item{ flex:1; height:100%; border:1px solid #ccc; overflow: auto; } .item p{ line-height:100px; text-align:center; }