答案 0 :(得分:1)
最好像这样使用flex
:
* {
padding: 0;
margin: 0;
}
.container {
display: flex;
flex-direction: row;
justify-content: center;
height: 100vh;
flex-wrap: no-wrap;
}
.container div {
width: 50%;
height: 200px;
}
.picture {
background: #4451c2;
}
.text {
background: #f451c2;
}
@media (max-width: 600px) {
.container {
flex-direction: column;
}
.container div {
width: 100%;
}
}
<div class="container">
<div class="picture">picture</div>
<div class="text">Some text is here</div>
</div>
使用@media
规则,我们将width
更改为100%
,将flex-order
更改为column
。
P.S .:不用注意方块的高度,这只是例如解决屏幕尺寸问题的方法。