blob: 79b878a6db5bef9fe86cf8eb35c9a4594b480575 (
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
26
27
|
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<style>
.outer {
position: absolute;
margin-top: 3px;
margin-left: 3px;
width: 200px;
height: 150px;
overflow: hidden;
}
.inner {
position: absolute;
margin-top: -3px;
margin-left: -3px;
width: 200px;
height: 150px;
box-shadow: blue 3px 3px 20px inset;
}
</style>
<div class="outer">
<div class="inner"></div>
</div>
|