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.
cssポジショニングなしで画面サイズに合わせて背景画像を設定するにはどうすればよいですか? 学校の課題をやっているのですが、背景画像を設定したいのですが、教授がポジショニングを使用できないと言ったので、別の方法はありますか?
これを試して
html{ background:url('backgroundimage.jpg') no-repeat center center; min-height:100%; min-width:100%; background-size:cover; } body{ min-height:100%;/*hack for some mobile browsers */ min-width:100%; }
参照リンク