<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
.column-left {
overflow: hidden;
height: 400px;
background-color: #fff;
position: relative;
float: left;
}
.resize-save {
border-right: 2px solid #999;
position: absolute;
top: 0;
right: 5px;
bottom: 0;
left: 0;
padding: 16px;
overflow-x: hidden;
}
.resize-bar {
width: 200px;
height: inherit;
resize: horizontal;
cursor: ew-resize;
cursor: col-resize;
opacity: 0;
overflow: scroll;
}
.resize-bar::-webkit-scrollbar {
width: 200px;
height: inherit;
}
</style>
<body>
<div class="column-left">
<div class="resize-bar"></div>
<div class="resize-line"></div>
<div class="resize-save">
左侧的内容,左侧的内容,左侧的内容,左侧的内容
</div>
</div>
</div>
</body>
</html>
11-20
04-12
701
06-11
556
11-22
2650