z-indexプロパティは、ボックスの重なりの順序を指定する際に使用します。
z-indexプロパティは、positionプロパティでstatic以外の値が指定されている要素に適用されます。
p.sample {
color: #000000; background-color: #99cc00;
position: relative; top: 50px; z-index: 2;
}
img.sample {
position: relative; top: -50px; z-index: 1;
}
<html>
<head>
<link rel=”stylesheet” href=”sample.css”
type=”text/css”>
</head>
<body>
<p class=”sample”>上に重なります。</p>
<img src=”https://www.htmq.com/wp-content/uploads/2024/07/img001.gif”
alt=”サンプル画像” class=”sample”>
</body>
</html>
上に重なります。