blob: 72dcdcfb61dfa5a407d4ed3e0520001f23c2a04c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<style>
.outer {
position: absolute;
width: 200px;
height: 150px;
overflow: hidden;
}
.inner {
position: absolute;
top: 3px;
left: 3px;
width: 200px;
height: 150px;
box-shadow: blue 0px 0px 20px inset;
}
</style>
<div class="outer">
<div class="inner"></div>
</div>
|