54 lines
1.2 KiB
HTML
54 lines
1.2 KiB
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>
|
|
window.onload = function () {
|
|
getRem(750, 100)
|
|
};
|
|
window.onresize = function () {
|
|
getRem(750, 100)
|
|
};
|
|
function getRem(pwidth, prem) {
|
|
var html = document.getElementsByTagName("html")[0];
|
|
var oWidth = document.body.clientWidth || document.documentElement.clientWidth;
|
|
html.style.fontSize = oWidth / pwidth * prem + "px";
|
|
}
|
|
</script>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.mian {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.box {
|
|
width: 1.875rem;
|
|
height: 1.875rem;
|
|
}
|
|
|
|
.box_1 {
|
|
background: red;
|
|
}
|
|
|
|
.box_2 {
|
|
background: blue;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="mian">
|
|
<div class="box box_1"></div>
|
|
<div class="box box_2"></div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |