理由はわかりませんが、コンテンツの下に挿入ボックスの影があります。
次に例を示します。
div {
box-shadow:inset 0 0 10px black;
height:300px;
color:red;
}
<div>
a
</div>
a
ボックスの影の上にが表示されます。
ボックスの影を上に配置するにはどうすればよいa
ですか?
理由はわかりませんが、コンテンツの下に挿入ボックスの影があります。
次に例を示します。
div {
box-shadow:inset 0 0 10px black;
height:300px;
color:red;
}
<div>
a
</div>
a
ボックスの影の上にが表示されます。
ボックスの影を上に配置するにはどうすればよいa
ですか?
This answer offers the most straightforward solution via a minimal example and addresses the issue of scrolling.
Unfortunately there is no way to avoid an extra wrapping div
(due to box-shadow
layering).
.container {
position: relative;
}
.container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
box-shadow: inset 0 0 9px 3px yellow;
pointer-events: none;
}
.items {
height: 100px;
overflow: scroll;
}
<div class="container">
<div class="items">
<div class="item">One</div>
<div class="item">Two</div>
<div class="item">Three</div>
<div class="item">Four</div>
<div class="item">Five</div>
<div class="item">Six</div>
<div class="item">Seven</div>
<div class="item">Eight</div>
<div class="item">Nine</div>
<div class="item">Ten</div>
<div class="item">Eleven</div>
<div class="item">Twelve</div>
</div>
</div>