移动端开发流式布局
<style>
section {
margin: 0 auto;
width: 100%;
height: 500px;
min-width: 600px;
max-width: 1200px;
}
div:first-child {
float: left;
width: 50%;
height: 100%;
background-color: coral;
}
div:last-child {
float: left;
width: 50%;
height: 100%;
background-color: rgb(37, 189, 70);
}
</style>
</head>
<body>
<section>
<div></div>
<div></div>
</section>
</body>

浙公网安备 33010602011771号