11 lines
196 B
HTML
11 lines
196 B
HTML
<!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>
|