CSS Outline Width

The outline-width property controls the thickness of the outline.

Preview

Code

<style>
.box{
outline-style:solid;
outline-width:6px;
outline-color:#16a34a;
padding:20px;
}
</style>

<div class="box">Outline width example</div>

More CSS Outline Examples (5)