flex弹性布局的应用一之属性组合

以下四种属性由不同的属性值进行组合,会产生不同的变化,很是奇妙,学会如何运用会有很大帮助。我写的是我经常用的几种组合方式,供大家借鉴。

一、四种属性组合使用1
content类 中加入此代码可实现如图所示布局

display: flex;	//弹性布局
flex-direction: row;	//弹性盒元素的方向
justify-content: center; //主轴(水平)方向的对齐。对齐方式
align-items: center;	//侧轴(垂直)方向的对齐。center属性值是中心对齐。用的多的就是center。

在这里插入图片描述
二、四种属性组合使用2
content类 中加入此代码可实现如图所示布局

display: flex;
flex-direction: row;
justify-content: space-between;	//两端对齐
align-items: center; 

在这里插入图片描述
三、四种属性组合使用3
content类 中加入此代码可实现如图所示布局

display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center; 

在这里插入图片描述

flex-direction的属性值参考:https://www.runoob.com/cssref/css3-pr-flex-direction.html
justify-content的属性值参考:https://www.runoob.com/cssref/css3-pr-justify-content.html

主要代码

<html>
<head>
	<title>flex布局的应用</title>
	<style type="text/css">
		.content{
			width: 800px;
			height: 400px;
			background-color:#dbdbdb;

		}
		.c-1{
			width: 115px;
			height: 180px;
			background-color:pink;
			border: 1px solid #f44336;
		}
	</style>
</head>
<body>
	<div class="content">
		<div class="c-1">1</div>
		<div class="c-1">2</div>
		<div class="c-1">3</div>
		<div class="c-1">4</div>
	</div>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值