You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
541 B
30 lines
541 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
</head>
|
|
<style>
|
|
* {margin:0; padding:0;}
|
|
html,body{height:100%;}
|
|
.box {height:100%;background: #020622;}
|
|
|
|
html {
|
|
/*在根元素中计算基准值字体大小,设备宽度 / 设计稿宽度 * 100*/
|
|
font-size: calc(100vw /1920 * 100 );
|
|
}
|
|
|
|
#box {
|
|
width: 19.2rem;
|
|
height: 1rem;
|
|
background-color: aqua;
|
|
font-size: 1rem;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="box">
|
|
测试rem
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|