I次のHTMLを持っている:応答ページ:右の列は時に1列に上に滞在します
<div class="left">
this is left side. it should go to the bottom when in one column
</div>
<div class="right">
this is right side. it should go to the top when in one column
</div>
CSS:私は上に右列の滞在を作ることを望んでいます
.left {
width: 70%;
float: left;
background-color: red;
}
.right {
width: 30%;
float: left;
background-color: yellow;
}
@media only screen and (max-width : 768px) {
.left, .right {
width: 100%;
}
}
表示が1列の場合ここで
がjsfiddleリンクです:https://jsfiddle.net/m7zpoc30/1/
私の現在のCSSへの変更を含め、私が何をすべきかを提案すること自由に感じてください。
ありがとうございます!
はあなたのdivの順序を切り替え、右の作業溶液のための – JonSG