右边固定宽度,左边自适应宽度

本文介绍了三种网页布局方法:使用浮动实现左右布局、通过绝对定位实现右侧固定宽度布局及利用绝对定位完成左右两侧不同宽度的布局。这些技巧对于前端开发者来说非常实用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1、左边左浮动,margin-left负值,右边右浮动

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
	*{
		margin: 0;
		padding: 0;
	}
	.left{
		float: left;
		width: 100%;
		height: 300px;
		background: #000;
		margin-right: -200px;
		font-size: 40px;
		color: #fff;
	}
	.right{
		float: right;
		width: 200px;
		background: red;
		height: 300px;
		font-size: 40px;
		color: #fff;
	}
	</style>
</head>
<body>
	<div class="box">
		<div class="left">left</div>
		<div class="right">right</div>
	</div>
</body>
</html>
2、右边绝对定位,左边margin-left

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
	*{
		margin: 0;
		padding: 0;
	}
	.left{
		
		height: 300px;
		background: #000;
		margin-right: 200px;
		font-size: 40px;
		color: #fff;
	}
	.right{
		position: absolute;
		top: 0;
		right: 0;
		width: 200px;
		background: red;
		height: 300px;
		font-size: 40px;
		color: #fff;
	}
	</style>
</head>
<body>
	<div class="box">
		<div class="left">left</div>
		<div class="right">right</div>
	</div>
</body>
</html>

3、左右绝对定位,左边加width,top,right,left

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
	*{
		margin: 0;
		padding: 0;
	}
	.left{
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		width: 100%;
		background: #000;
		height: 300px;
		font-size: 40px;
		color: #fff;
	}
	.right{
		position: absolute;
		top: 0;
		right: 0;
		width: 200px;
		background: red;
		height: 300px;
		font-size: 40px;
		color: #fff;
	}
	</style>
</head>
<body>
	<div class="box">
		<div class="left">left</div>
		<div class="right">right</div>
	</div>
</body>
</html>



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值