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.
ユーザーがブラウザー ウィンドウを特定の解像度 (幅 320 など) 未満に縮小した場合、それ以上の CSS レイアウトの変更を有効にしたくありません。基本的に、レイアウトが 320 度であっても、これ以上変更したくありません。320 度のビューを保持する必要があります。
メディアクエリで固定幅を使用しますか?
はい、メディアクエリはまさにこの目的を満たすものです。具体的には:
<style> @media (max-width: 320px) { body { width: 320px; } } </style>
そして、ここにデモがあります