0
0

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 1 year has passed since last update.

【HTML/CSS】画像を見切れて表示させたい

Posted at

例えば200px × 200pxの枠内に画像を表示させたいとき、imgタグで表示させると画像全体が200px × 200pxに歪められて表示される。
見切れてもいいから縦横比を維持して表示させたい。

img{
    object-fit: cover;
    object-position: top;
}

上のように設定すると、画像の上部が縦横比を維持したまま表示され、下部分が見切れて表示されなくなる。
object-positionをbottom、left、rightなどに設定すると、表示する範囲を変えられる。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?