码迷,mamicode.com
首页 > Web开发 > 详细

css常用左侧固定右侧自适应布局两栏布局的方法

时间:2018-11-24 14:26:19      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:lin   padding   lex   relative   style   highlight   代码   set   html   

话不多说直接上代码

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
	*{
		margin:0;
		padding:0;
	}
	/*1-1s  定位法*/
	/*.one{
		position: relative;
	}
	.one-left{
		position: absolute;
		width: 200px;
		height: 500px;
		background: blue;
	}
	.one-right{
		margin-left:200px;
		height: 300px;
		background: red;
	}*/
	/*1-1e*/

	/*1-2s 双inline-block+width的calc属性*/
	/*.one{
    	font-size: 0;   
	}
	.one-left{
		display: inline-block;
		vertical-align: top;   
		width: 200px;
		height: 500px;
		background: blue;
	}
	.one-right{
		display: inline-block;
		vertical-align: top;   
		width: calc(100% - 200px);
		height: 300px;
		background: red;
	}*/
	/*1-2e*/

	/*1-3s 双float+width的calc属性*/
	/*.one-left{
		float: left;  
		width: 200px;
		height: 500px;
		background: blue;
	}
	.one-right{
		float: left;  
		width: calc(100% - 200px);
		height: 300px;
		background: red;
	}*/
	/*1-3e*/

	/*1-4s 利用flex布局*/
	/*.one{
    	display: flex;   
	}
	.one-left{   
		width: 200px;
		height: 500px;
		background: blue;
	}
	.one-right{
		flex:1;
		height: 300px;
		background: red;
	}*/
	/*1-4e*/
			

	</style>
</head>
<body>
	<div class="one">
		<div class="one-left"></div>
		<div class="one-right"></div>
	</div>
</body>
</html>

  

css常用左侧固定右侧自适应布局两栏布局的方法

标签:lin   padding   lex   relative   style   highlight   代码   set   html   

原文地址:https://www.cnblogs.com/Jmosquito/p/10011513.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!