发布网友 发布时间:2022-04-25 14:11
共2个回答
热心网友 时间:2022-04-20 20:19
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
body{
margin:0;
}
.stage{
position:relative;
}
.left{
position:absolute;
left:0;
top:0;
background-color:green;
width:200px;
height:500px;
}
.center{
margin-left:200px;
background-color:orange;
height:500px;
}
</style>
</head>
<body>
<div class="stage">
<div class="left"></div>
<div class="center"></div>
</div>
</body>
</html>
热心网友 时间:2022-04-20 21:37
假设第一个div的宽度为200px;
设置第二个div 的width: calc(100% - 200px);