當瀏覽器的寬度600px的下變,我想這樣的位置變化,多虧了媒體查詢:交換DIV位置
看來,這將需要交換的div位置。這可能與CSS?
* { padding: 0; margin: 0; }
#a { float: left; background-color: red; width: 150px; }
#b { background-color: blue; }
#c { float: right; width: 40%; background-color: yellow; }
@media (max-width: 600px) {
/* ... */
}
<div>
<div id="a">a</div>
<div id="c">c</div>
<div id="b">b</div>
</div>
謝謝,太棒了! – Basj
這是我最後一個問題@GCyrillyus:http://stackoverflow.com/questions/37239774/full-width-input-in-a-div ...也許你會有一個想法:) – Basj
@Basj看到迪帕斯的答案從http://codepen.io/gcyrillus/pen/WwWPwP/更新應該做你最終尋找的東西 –