blob: 6b4b9e5755fea014152af3802415146277fd36d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!doctype html>
<title>CSS Test Reference</title>
<style>
div {
width: 100px;
height: 100px;
box-sizing: border-box;
box-shadow: 0 0 0 10px inset black;
}
</style>
<div></div>
|