HP作成しておりまして、bodyに1200px指定しています。
このままメディアクエリで指定しても意味ありませんか?
cssには記載してます。
HTML
1body{ 2 max-width: 1200px; 3 margin-right:auto; 4 margin-left:auto; 5 height: 100%; 6}
CSS
1@media screen and (max-width: 500px){ 2 3.headline{ 4 5width: 100% 6height:auto; 7} 8.nav-list ul{ 9 width: 100%; 10 height: auto; 11} 12.top-nav{ 13 width: 100% 14 height:auto; 15} 16.top-images{ 17 width: 100% 18 height:auto; 19} 20.company-wapper{ 21 flex-direction: column; 22} 23.company{ 24 width: 100%; 25} 26img { 27 28width: 50% ; 29} 30*{ 31 box-sizing: border-box; 32 width: 70%; 33 margin-left: 15%; 34 margin-right: 15%; 35} 36.main { 37 width: 100% 38} 39 40.main-image { 41 width: 100% 42 max-width: 100% 43 height: auto; 44} 45 46}
回答1件
あなたの回答
tips
プレビュー