SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="1.css">
</head>
<body>

    第一种方法:<br>
    <div class="box1">左边宽度固定</div>
    <div class="box2">宽度不固定</div>

    第二种方法:<br>
    <div class="box3">左边宽度固定</div>
    <div class="box4">宽度不固定</div>
    

</body>
</html>
.box1 {
    width: 400px;
    height: 200px;
    background-color: aqua;
    float: left;
}

.box2 {
    width: 100%;
    height: 200px;
    background-color: blueviolet;
}

.box3 {
    width: 400px;
    height: 200px;
    background-color: aqua;
    float: left;
}

.box4{
    position: absolute;
	left: 400px;
	right: 0;
    height: 200px;
    background-color: blueviolet;
}