使用flex怎么实现这种布局,我写到第三个写不下去了求大神补充。
<p class="pic">
<p class="pic1"></p>
<p class="pic2"></p>
<p class="pic3"></p>
<p class="pic4"></p>
</p>
<style>
.pic{
display: flex;
width: 400px;
height: 400px;
margin: 100px auto;
flex-wrap: wrap;
}
.pic1{
flex: 1;
height: 100%;
background-color: pink;
}
.pic2{
flex: 1;
height: 50%;
background: #C81623;
}
.pic3{
/*width: 25%;*/
/*float: left;*/
/*height: 50%;*/
/*background-color: green;*/
}
...
大概就像下面这样
效果
雷雷 雷雷