1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!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>
- *{
- margin: 0;
- padding: 0;
- }
- /* html{
- font-size: 50px;
- } */
- #div1{
- height: 200px;
- background: red;
- width: 3rem;
- font-size: 100px;
- }
- /* rem 相对于根元素html的字体大小 */
- /* em 相对于父元素的字体大小 */
- #div2{
- /* height: 100px; */
- /* width: 3rem; */
- background: yellow;
- /* width: 2em; */
- /* width: 50vw;
- height: 50vh; */
- /* vh vw 相当于视口的一个高度和宽度 设备 */
- width: 50%;
- height: 50%;
- }
- #div3{
- width: 100%;
- height: calc(100vh - 100px);
- background: orange;
- }
- </style>
- </head>
- <body>
- <!-- <div id="div1">
- <div id="div2"></div>
- </div> -->
- <div id="div3"></div>
- <script src="rem.js"></script>
- </body>
- </html>
|