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.
divを特定の幅で特定の高さにする方法はありますか?
したがって、800px以上では、divの高さは200pxになります
次に、400〜799ピクセルで、150ピクセルなどになります。
これにはメディアクエリを使用できる場合があります。たとえば、divがウィンドウの全幅を占める場合は、次を使用できます。
div
@media all and (min-width:800px) { #elem {height:200px} }
ウィンドウに対する相対的なサイズがわかっている場合は、幅のしきい値を調整できdivます(たとえば、ウィンドウの左右に合計20pxのマージンがある場合は20を追加します)