flex图片布局

Posted a瑶池

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flex图片布局相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>flex图片布局</title>
<style>
body {
margin: 0;
padding: 0;
}

.box {
float: left;
width: 30%;
margin-top: 10px;
margin-left: 2.5%;
height: 0;
padding-bottom: 33.98%;
background-color: #dbe0e4;
background:red;
background-size: cover;
display:block;position: relative;


}
img{

background: red;
margin: 0 auto;
max-width: 100%;
/*超出宽度的图片限制最大显示宽度
max-height:250px;
/*超出高度的图片限制最大显示高度*/
position: absolute;
top: 50%;
left: 50%;
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
</style>
</head>

<body>
<div class="box">
<img src="" >
</div>
<div class="box">
<img src="" >
</div>
<div class="box">
<img src="" >
</div>
<div class="box">
<img src="" >
</div>
<div class="box">
<img src="" >
</div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</body>

</html>

以上是关于flex图片布局的主要内容,如果未能解决你的问题,请参考以下文章

flex图片布局

flex布局帮助你快速实现布局

使用display flex将图片居中的方法

flex布局模式简单概述

Flex布局实例教程

Flex实现复杂布局