ScanSkill

outline-width

The outline-width sets the thickness of an outline.

Syntax

outline-width: medium | thin | thick | value;

Example

        .div-1 , .div-2 , .div-3 , .div-4{
            outline:solid black;
            margin-right: 20px;
        }

        .div-1 {
            outline-width: medium;
        }

        .div-2 {
            outline-width: thin;
        }

        .div-3 {
            outline-width: thick;
        }
        .div-4 {
            outline-width: 2px;
        }
outline-width

Property Values

medium: sets a medium outline. (Default value)

thin: sets a thin outline.

thick: sets a thick outline.

value: sets the given value as the thickness of outline.