| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- /* css reset */
- *{
- margin: 0;
- padding: 0;
- }
- li{
- list-style: none;
- }
- /* 工具类 */
- .clearfix::after{
- content: "";
- display: block;
- clear: both;
- }
- /* 左侧图片区域 start */
- .img-side{
- float: left;
- width: 375px;
- height: 100vh;
- background-image: url("./img/xiaomi/bg.jpg");
- background-size: cover;
- background-position: center;
- }
- /* 左侧图片区域 end */
- /* 登录内容区域 start */
- .login-content{
- float: left;
- width: calc(100% - 375px);
- height: 100vh;
- background-color: #f5f5f5;
- }
- /* 登录内容区域 end */
- </style>
- </head>
- <body>
- <div class="container clearfix">
- <div class="img-side"></div>
- <div class="login-content"></div>
- </div>
- </body>
- </html>
|