SCSSによる応答背景画像MIXIN

1324 ワード

したがって、応答画像は、ブートストラップで便利です
.img-fluid
私もWordPressの上で私のイメージを最適化して、Webpにイメージを変換するために、EWWWを使います.
しかし、私は使用して私の背景画像を使用して同じ割合を持っている間応答して働いている.
私は下記のmixinを使用し、それは私の人生を変えました.試してみてください.
@mixin responsive-bg-image($image-width, $image-height) {
  background-size: cover;
  height: 0;
  padding-bottom: percentage($image-height / $image-width);
  display: block;
  position: relative;
}