You are here: Reference > CSS > properties > outline

outline property

Browser support:
8
Specifies a shorthand form for all outline properties at once. Outline is a line around an element, but different from the border property.
The outline is similar to the border of an element, but it is not part of the element's dimensions, and it is displayed around the margin of the element. Therefore the element's width and height properties do not contain the width of the outline.
Note: The outline property is supported in Internet Explorer from version 8.
JavaScript page for this property: outline. You can find other example(s) there.

Possible values:

 One of the following values: 
 Any of the following values (use the space character to separate them, each value can be used only once): 
<outline-color>
<outline-style>
<outline-width>
inherit

Description of values:

inherit
Takes the value of this property from the computed style of the parent element.
outline-color
Specifies the color for the outline for an element.
outline-style
Specifies the style for an element's outline.
outline-width
Specifies the width for an element's outline.
Default: this property has no default value.

Example HTML code 1:

This example illustrates the use of the outline property:
<head>
    <style>
        .example {
            outline: 5px solid blue;
            border: 5px solid black;
        }
    </style>
</head>
<body>
    <div class="example">Outline and border</div>
</body>
Did you find this example helpful? yes no

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content