<html>
<head>
<style>
h2 {
outline-style: solid;
outline-width: thick;
}
div.a {
outline-style: solid;
outline-width: thick;
}
div.b {
border: 1px solid red;
outline-style: solid;
outline-width: thick;
}
</style>
</head>
<body>
<h1>The outline-width Property</h1>
<h2>A Heading with a thick outline</h2>
<div class="a">A div element with a thick outline.</div>
<br>
<div class="b">Notice that the outline is outside of any border.</div>
</body>
</html>