CSS3 弹性盒子(Flex Box)

   弹性盒子是CSS3的一种新的布局模式。

   CSS3 弹性盒子(Flexible Box或 filebox),是一种当页面需要适应不同的屏幕大小以及设备类型时确保元素拥有恰当的行为的布局方式。

   引入弹性盒布局模型的目的是提供一种更有效的方式来对一个容器中的子元素进行排列,对齐和分配空白空间。

浏览器支持

    表格中的数字表示支持该属性的第一个浏览器的版本号。

    紧跟在数字后面的 -webkit- 或 -moz- 为指定浏览器的前缀。


   

CSS3 弹性盒子内容

   弹性盒子由弹性容器(Flex container)和弹性子元素(Flex item)组成。

   弹性容器通过设置 display 属性的值为 flex 或 inline-flex将其定义为弹性容器。

   弹性容器内包含了一个或多个弹性子元素。

   注意:弹性容器外及弹性子元素内是正常渲染的。弹性盒子只定义了弹性子元素如何在弹性容器内布局。

  弹性子元素通常在弹性盒子内一行显示。默认情况每个容器只有一行。 

  以下元素展示了弹性子元素在一行内显示,从左到右:

<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			.flex-container {
				display: -webkit-flex;
				display: flex;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				height: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>

  当然我们可以修改排列方式。

  如果我们设置 direction 属性为 rtl (right-to-left),弹性子元素的排列方式也会改变,页面布局也跟着改变:

<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			body {
				direction:rtl;
			}
			.flex-container {
				display: -webkit-flex;
				display: flex;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				height: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>

flex-direction

   flex-direction 属性指定了弹性子元素在父容器中的位置。

语法

flex-direction: row | row-reverse | column | column-reverse

   flex-direction的值有:

   ·row:横向从左到右排列(左对齐),默认的排列方式。

   ·row-reverse:反转横向排列(右对齐,从后往前排,最后一项排在最前面。

   ·column:纵向排列。

   ·column-reverse:反转纵向排列,从后往前排,最后一项排在最上面。

<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			.flex-container {
				display: -webkit-flex;
				display: flex;
				-webkit-flex-direction:row-reverse;
				flex-direction:row-reverse;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				height: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>
<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			.flex-container {
				display: -webkit-flex;
				display: flex;
				-webkit-flex-direction:column;
				flex-direction:column;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				height: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>
<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			.flex-container {
				display: -webkit-flex;
				display: flex;
				-webkit-flex-direction:column-reverse;
				flex-direction:column-reverse;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				height: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>

justify-content 属性

   内容对齐(justify-content)属性应用在弹性容器上,把弹性项沿着弹性容器的主轴线对齐。

语法如下

justify-content: flex-start | flex-end | center | space-between | space-around

各个值解析:

   ·flex-start:

    弹性项目向行头紧挨着填充。这个是默认值。第一个弹性项的main-start外边距边线被放置在该行的main-start边线,而后续弹性项依次平齐摆放。

   ·flex-end:

   弹性项目向行尾紧挨着填充。第一个弹性项的main-end外边距边线被放置在该行的main-end边线,而后续弹性项依次平齐摆放。

   ·center:

   弹性项目居中紧挨着填充。(如果剩余的自由空间是负的,则弹性项目将在两个方向上同时溢出)。

   ·space-between:

   弹性项目平均分布在该行上。如果剩余空间为负或者只有一个弹性项,则该值等同于flex-start。否则,第1个弹性项的外边距和行的main-start边线对齐,而最后1个弹性项的外边距和行的main-end边线对齐,然后剩余的弹性项分布在该行上,相邻项目的间隔相等。

   ·space-around:

   弹性项目平均分布在该行上,两边留有一半的间隔空间。如果剩余空间为负或者只有一个弹性项,则该值等同于center。否则,弹性项目沿该行分布,且彼此间隔相等(比如是20px),同时首尾两边和弹性容器之间留有一半的间隔(1/2*20px=10px)。

效果图展示:


<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			.flex-container {
				display: -webkit-flex;
				display: flex;
				-webkit-justify-content: flex-end;
				justify-content: flex-end;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				height: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>
<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			.flex-container {
				display: -webkit-flex;
				display: flex;
				-webkit-justify-content: center;
				justify-content: center;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				height: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>
<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			.flex-container {
				display: -webkit-flex;
				display: flex;
				-webkit-justify-content: space-between;
				justify-content: space-between;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				height: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>
<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			.flex-container {
				display: -webkit-flex;
				display: flex;
				-webkit-justify-content: space-around;
				justify-content: space-around;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				height: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>

align-items 属性

   align-items 设置或检索弹性盒子元素在侧轴(纵轴)方向上的对齐方式。

语法

align-items: flex-start | flex-end | center | baseline | stretch

各个值解析:

    ·flex-start:弹性盒子元素的侧轴(纵轴)起始位置的边界紧靠住该行的侧轴起始边界。

    ·flex-end:弹性盒子元素的侧轴(纵轴)起始位置的边界紧靠住该行的侧轴结束边界。

    ·center:弹性盒子元素在该行的侧轴(纵轴)上居中放置。(如果该行的尺寸小于弹性盒子元素的尺寸,则会向两个方向溢出相同的长度)。

    ·baseline:如弹性盒子元素的行内轴与侧轴为同一条,则该值与'flex-start'等效。其它情况下,该值将参与基线对齐。

    ·stretch:如果指定侧轴大小的属性值为'auto',则其值会使项目的边距盒的尺寸尽可能接近所在行的尺寸,但同时会遵照'min/max-width/height'属性的限制。

<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			.flex-container {
				display: -webkit-flex;
				display: flex;
				-webkit-align-items:stretch;
				align-items: stretch;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>
<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			.flex-container {
				display: -webkit-flex;
				display: flex;
				-webkit-align-items:flex-start;
				align-items: flex-start;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>
<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			.flex-container {
				display: -webkit-flex;
				display: flex;
				-webkit-align-items:flex-end;
				align-items: flex-end;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>
<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			.flex-container {
				display: -webkit-flex;
				display: flex;
				-webkit-align-items:center;
				align-items: center;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>
<!DOCTYPE html>
<html>
	<head>
		<title>自学教程(如约智惠.com)</title>
		<meta charset="utf-8">
		<style>
			.flex-container {
				display: -webkit-flex;
				display: flex;
				-webkit-align-items:baseline;
				align-items: baseline;
				width: 400px;
				height: 250px;
				background-color: lightgrey;
			}

			.flex-item {
				background-color: cornflowerblue;
				width: 100px;
				margin: 10px;
			}
		</style>
	</head>
		
	<body >
		<div class="flex-container">
		  <div class="flex-item">flex item 1</div>
		  <div class="flex-item">flex item 2</div>
		  <div class="flex-item">flex item 3</div>  
		</div>
	</body>
</html>

flex-wrap 属性

   flex-wrap 属性用于指定弹性盒子的子元素换行方式。

语法

flex-wrap: nowrap|wrap|wrap-reverse|initial|inherit;

各个值解析:

    ·nowrap - 默认, 弹性容器为单行。该情况下弹性子项可能会溢出容器。

    ·wrap - 弹性容器为多行。该情况下弹性子项溢出的部分会被放置到新行,子项内部会发生断行

    ·wrap-reverse -反转 wrap 排列。




























































































































































































猜你喜欢

转载自blog.csdn.net/lengyuezuixue/article/details/80732286
今日推荐