16 lines
259 B
HTML
16 lines
259 B
HTML
<!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>
|