summaryrefslogtreecommitdiffstats
path: root/layout/reftests/box-shadow/boxshadow-spread.html
blob: a7c9a8c1df1be31e3c43726857e47e1cd7172594 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE HTML>
<style>
body {
  background-color: green;
}

#thediv {
  width: 300px;
  height: 100px;
  position: absolute;
  top: 20px;
  left: 20px;
  color: black;
  box-shadow: 3px 3px 0px 3px;
}
</style>
<div id="thediv">Foo</div>