右侧定宽左侧自适应布局
Posted chuanzhi946
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了右侧定宽左侧自适应布局相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
.left {
margin-right: 200px;
height: 200px;
background-color: red;
}
.right {
float: right;
width: 200px;
height: 200px;
background-color: green;
}
</style>
</head>
<body>
<div class="right"></div>
<div class="left"></div>
</body>
</html>
以上是关于右侧定宽左侧自适应布局的主要内容,如果未能解决你的问题,请参考以下文章