<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
html {
font-size:14px;
}
body {
background-color: #f3f3f3;
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
}
main {
background-color: white;
padding: 30px;
box-shadow: 0 0 5em rgba(0, 0, 0, 0.2);
}
h1 {
font-size: clamp(2rem,4vw,3rem);
}
div {
font-size: clamp(1rem,2.5vw,2rem);
}
</style>
</head>
<body>
<main>
<h1>测试clamp</h1>
<div>
测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本测试文本
</div>
</main>
</body>
</html>