Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-ui/outline-offset-inset-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="match" href="outline-offset-inset-001-ref.html">
<meta name="assert" content="outline-offset: inset renders the same as a negative outline-offset for various outline widths">
<style>
div {
display: inline-block;
width: 80px;
height: 80px;
background: lightblue;
outline-style: solid;
outline-offset: inset;
margin: 20px;
}
.w3 { outline-width: 3px; }
.w8 { outline-width: 8px; }
.w12 { outline-width: 12px; }
</style>
<div class="w3"></div>
<div class="w8"></div>
<div class="w12"></div>