blob: 9128eae260fce19f818a83a7ac3ff11be1a2d36b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!doctype html>
<title>CSS Test Reference</title>
<style>
div {
position: absolute;
top: 10px;
left: 10px;
width: 100px;
height: 100px;
outline-width: 0;
outline-offset: 5px;
outline-color: black;
outline-style: auto;
}
</style>
<div></div>
|