<html>
<head>
<style>
h2 {
outline-style: solid;
}
div.a {
outline-style: solid;
}
div.b {
border: 1px solid red;
outline-style: solid;
}
</style>
</head>
<body>
<h1>The outline-style Property</h1>
<h2>A Heading with a solid outline</h2>
<div class="a">A div element with a solid outline.</div>
<br>
<div class="b">Notice that the outline is outside of any border.</div>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.php?filename=trycss_outline-style3 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:37:47 GMT -->
</html>