2022年3月10日解決済み

position: absolute; で top/bottom/left/right を指定しても問題ありませんか?

ユーザー

画像を重ねる方法として、

.hero {
  height: 400px;
  position: relative;
}

.hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}

とレッスンのような

.hero {
  height: 400px;
}

.hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  position: absolute;
}

ふたつの指定には何か違いがあるのでしょうか? 
上の記述の方がわかりやすい感じがしますが。。。

スタッフ

この回答を見るにはプレミアムプランへの登録が必要です

プレミアムプランとは?