blob: bd96afc1849f9f63f4a85bb4320a995c5c122b97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.box {
width: 100px;
height: 100px;
margin: 10px;
background-color: red;
}
</style>
</head>
<body>
<!-- You should see no red -->
<div class="box" style="box-shadow: 150px 150px 0 green inset"></div>
<div class="box" style="box-shadow: -150px -150px 0 green inset"></div>
</body>
</html>
|