48
41

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

max-widthのリセットはautoではなくinitialを使う

Posted at

レスポンシブデザインなど、画像幅をリキッド(親の幅に準ずる)にするために下記のような設定をよくします。

img {
  max-width: 100%;
}

オーバーフローするdivに入れる場合など、個別に「ここは親の幅に関わらず固定幅で表示したい」「でもimgの幅は不確定」という時は initial を使ってリセットしないと元に戻りません。(initial はCSS3から使える設定値です。)

img {
  max-width: initial; /* 初期状態にリセット */
}

auto で行けそうな気がしてしまいますが、これは効かないので注意です。

img {
  max-width: auto; /* これは効かない */
}

デモはこちら
http://codepen.io/skwbr/pen/XbBZaQ

48
41
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
48
41

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?