效果演示
Kapture 2024-12-25 at 17.12.58.gif
- 源码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>测试</title>
<style>
.box {
height: 180px;
background: #e0c89b;
overflow: auto;
resize: horizontal;
max-width: 100%;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>