css3 flex 详解,可以实现div内容水平垂直居中
生活随笔
收集整理的這篇文章主要介紹了
css3 flex 详解,可以实现div内容水平垂直居中
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
先說一下flex一系列屬性:
一、flex-direction: (元素排列方向)
※ flex-direction:row (橫向從左到右排列==左對齊)
※ flex-direction:row-reverse (與row 相反)
※ flex-direction:column (從上往下排列==頂對齊)
※ flex-direction:column-reverse (與column 相反)
二、flex-wrap: (內容一行容不下的時候才有效)
※flex-wrap:nowrap (超出不換行,很奇怪里面的寬度會變成100%)
※ flex-wrap:wrap (超出按父級的高度平分)
※flex-wrap:wrap-reverse(與wrap 相反)
三、justify-content: (水平對齊方式)
※flex-start (水平左對齊)
※ justify-content:flex-end; (水平右對齊)
※ justify-content:center;(水平居中對齊)
※justify-content:space-between; (兩端對齊)
※justify-content:space-around; (兩端間距對其)
四、align-items: (垂直對齊方式)
※ align-items:stretch; (默認)
※align-items:flex-start; (上對齊,和默認差不多)
※align-items:flex-end; (下對齊)
※ align-items:center;(居中對齊)
※align-items:baseline; (基線對齊)
還沒搞明白基線對齊是什么意思。
以上是對flex的簡單介紹。下面有個小例子,
大家經常用到的,某個div里面水平垂直居中,
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
#box{
display: flex;
display: -webkit-flex;
border: 1px solid #0000FF;
height: 200px;
width: 400px;
align-items:center;
justify-content:center;
}
.item{
width: 50px;
height: 40px;
border: 1px solid #00C1B3;
}
</style>
</head>
<body>
<div id="box">
<div class="item">1</div>
<div class="item">2</div>
<div class="item">3</div>
<div class="item">4</div>
<div class="item">5</div>
</div>
</body>
</html>
總結
以上是生活随笔為你收集整理的css3 flex 详解,可以实现div内容水平垂直居中的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: android动态显示键盘,动态修改Ed
- 下一篇: android 构造xml,androi