pc端适应移动端-基础布局
<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>不使用viewpoint</title>
<style>
*{
margin: 0;
padding: 0;
list-style: none;
}
html,body{
width: 100%;
height: 100%;
background-color: yellowgreen;
}
.container{
width: 100%;
/* min-width: 1200px; */
height: 100%;
background-color: teal;
}
.box{
display: flex;
min-width: 1024px;
height: 100%;
background-color: tomato;
}
.box1{
flex: 1;
height: 100%;
background-color: violet;
}
.box2{
width: 200px;
background-color: turquoise;
}
</style>
</head>
<body>
<div class="container">
<div class="box">
<div class="box1">1</div>
<div class="box2">2</div>
</div>
</div>
</body>
</html>```