我们可以借助CSS中的 float 属性来实现。文章来源:https://www.toymoban.com/news/detail-826808.html
实例:
布局需求:
左侧 DIV 固定宽度,右侧 DIV 自适应宽度,填充满剩余页面。文章来源地址https://www.toymoban.com/news/detail-826808.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<title>title</title>
<style>
.left {
float: left;
width: 300px;
height: 300px;
background-color: red;
}
.right {
background-color: orange;
margin-left: 310px;
height: 300px;
}
</style>
</head>
<body>
<div class="left"></div>
<div class="right"></div>
</body>
</html>
到了这里,关于HTML板块左右排列布局——左侧 DIV 固定宽度,右侧 DIV 自适应宽度,填充满剩余页面的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!