#div1 {
position: relative;
max-width: 100%;
height: 100px;
background-color: green;
color: white;
}
#div2 {
position: relative;
max-width: 100%;
height: 100px;
background-color: red;
color: white;
}
#div3 {
position: relative;
max-width: 100%;
height: 100px;
background-color: blue;
color: white;
}
@media (max-width: 400px) {
#div1 {
position: absolute;
max-width: 100%;
height: 100px;
background-color: green;
color: white;
}
#div2 {
position: absolute;
left: 0;
max-width: 100%;
height: 100px;
background-color: red;
color: white;
}
#div3 {
position: relative;
max-width: 100%;
height: 100px;
background-color: blue;
color: white;
}
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<meta charset="utf-8" />
<body>
<div id="div1">
<h1>Box 1</h1>
</div>
<div id="div2">
<h1>Box 2</h1>
</div>
<div id="div2">
<h1>Box 3</h1>
</div>
</body>
</html>
の変更命令は、私は私が上で、私のサイトを閲覧していますデバイスの種類に基づいてdiv要素の注文を変更することができます彼らの方法ですか?私はレスポンシブルデザインを作成しようとしています。私は本質的に3つのdivsを持つこの非常に簡単なサンプルを作成しました。それらは、デスクトップ上で1,2,3の順になっています。モバイルデバイスを処理するために私のCSSにメディアクエリを追加しました。私は命令が2,1,3から変わるようにしたい。私はCSSでこれを達成する方法がなければならないと確信していますが、私はそれに慣れていません。何か案は?おかげ
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<meta charset="utf-8" />
<style>
#div1 {
position: relative;
max-width: 100%;
height: 100px;
background-color: green;
color: white;
}
#div2 {
position: relative;
max-width: 100%;
height: 100px;
background-color: red;
color: white;
}
#div3 {
position: relative;
max-width: 100%;
height: 100px;
background-color: blue;
color: white;
}
@media (max-width: 400px) {
#div1 {
position: absolute;
max-width: 100%;
height: 100px;
background-color: green;
color: white;
}
#div2 {
position: absolute;
left: 0;
max-width: 100%;
height: 100px;
background-color: red;
color: white;
}
#div3 {
position: relative;
max-width: 100%;
height: 100px;
background-color: blue;
color: white;
}
}
</style>
</head>
<body>
<div id="div1">
<h1>Box 1</h1>
</div>
<div id="div2">
<h1>Box 2</h1>
</div>
<div id="div2">
<h1>Box 3</h1>
</div>
</body>
</html>
(https://css-tricks.com/snippets/css/a-guideをしてもIE-9と下のバージョンで動作します-to-flexbox /):orderプロパティを見てください。 –
ありがとうございます、注文プロパティは私が必要とする可能性がIE 9をサポートするようには表示されませんが表示されます – Scott
IE9をサポートする必要がある場合は、最善のことは、いくつかのJavaScriptを使用することです。 –