答案 0 :(得分:0)
<style type="text/css">
.main {}
.flex {display: flex;}
.flex-3 {flex-grow: 3}
.flex-1 {flex-grow: 1}
.big-image {width: 100%;height: 400px;}
.small-image {width: 100%;height: 200px;}
.flex.column {flex-direction: column;}
body img {width: 85%;display: block; margin: auto;background-color: white;}
</style>
<div class="main">
<div class="flex">
<div class="flex-3"><img class="big-image"></div>
<div class="flex flex-1 column" >
<div class="flex-1"><img class="small-image"></div>
<div class="flex-1"><img class="small-image"></div>
</div>
</div>
</div>