37 lines
695 B
HTML
37 lines
695 B
HTML
<!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>rem</title>
|
|
<script src="./rem.js"></script>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.box {
|
|
width: 3.75rem;
|
|
height: 3.75rem;
|
|
float: left;
|
|
}
|
|
|
|
.box_1 {
|
|
background: red;
|
|
font-size: .4rem;
|
|
}
|
|
|
|
.box_2 {
|
|
background: yellow;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="box box_1">你好</div>
|
|
<div class="box box_2"></div>
|
|
</body>
|
|
|
|
</html> |