メディアクエリを使って1000px以下になったら要素の横幅を100%に変更したいです。
BOX1:赤
BOX2:黄
通常時
横幅:600px
高さ:200px;
レスポンシブ時
横幅:100%
@charset "UTF-8";
/* reset */
body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd, img, form, table, tr, th, td {
margin: 0;
padding: 0;
border: none;
font-style: normal;
font-weight: normal;
font-size: 100%;
text-align: left;
list-style-type: none;
border-collapse: collapse;
}
textarea { font-size: 100%; vertical-align:middle;}
img { border-style: none; display: block; }
hr { display: none; }
em{font-style: normal}
input{line-height:auto;vertical-align:middle;}
strong.more{color:#c30}
a{text-decoration: none;}
html {
}
body {
font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'MS Pゴシック',sans-serif;
}
- {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
/* 上の部分は気にせずここから書く */
#wrapper {
padding: inherit;
display: flex;
}
#box1{
width: 600px;
height: 200px;
background-color: red;
margin-left: auto;
margin-right: auto;
}
#box2{
width: 600px;
height: 200px;
background-color: blue;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 1000px){
div#wrapper{width: 100%;}
}
回答1件
あなたの回答
tips
プレビュー