Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
メディア クエリがなければ、次のようなものがあります。
.sample_div { left: 200px; }
780px のメディア クエリがある場合、次のことを行います。
.sample_div { right: 300px; }
問題は、左が 780px メディア クエリに表示されることです。その中で右だけを表示し、左を表示するにはどうすればよいですか?
W3Schoolsで左の仕様を確認
これはあなたのために働くはずです:
.sample_div { left: auto; right: 300px; }