私は2つの画像、つまりフレームとそのフレームに正確に収まる画像を持っています。本当に難しいのはです。です。背景画像を第2の背景画像に合わせる
2枚の画像:
:
私が試したもの:
.brawler.shelly {
background-image: url("/images/heroes/high/hero_icon_shelly.png");
background-position: center center;
background-size: 85%;
padding-bottom: 75%;
background-repeat: no-repeat;
}
.portrait {
background-image: url("/images/icons/card_common.png");
background-position: center top;
background-size: 100%;
padding-bottom: 75%;
background-repeat: no-repeat;
}
.col-4.col-md-3.col-lg-2.mb-2
.portrait
.brawler.shelly
.col-4.col-md-3.col-lg-2.mb-2
.portrait
.brawler.shelly
JSfiddle:
https://jsfiddle.net/3z68kcbr/
相対的なボックスと絶対的なボックスを使用し、背景サイズのカバーを使用します。 –