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-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="match" href="outline-offset-inset-002-ref.html">
<meta name="assert" content="outline-offset: inset renders the same as a negative outline-offset on an element with border-radius">
<style>
div {
width: 100px;
height: 100px;
background: lightblue;
border-radius: 20px;
outline: 6px solid blue;
outline-offset: inset;
}
</style>
<div></div>