CSS outline-style Property
Complete CSS Reference
Example
Set the style of an outline:
p
{
outline-style:dotted;
} |
Try it yourself »
More examples at the bottom of this page.
|
Definition and Usage
An outline is a line that is drawn around elements (outside the borders)
to make the element "stand out".
The outline-style property specifies the style of an
outline.
| Default value: |
none |
| Inherited: |
no |
| Version: |
CSS2 |
| JavaScript syntax: |
object.style.outlineStyle="dotted" |
Browser Support

The outline-style property is supported in all major browsers.
Note: Internet Explorer 8 (and higher) supports the outline-style
property if a !DOCTYPE is specified.
Property Values
| Value |
Description |
| none |
Specifies no outline |
| dotted |
Specifies a dotted outline |
| dashed |
Specifies a dashed outline |
| solid |
Specifies a solid outline |
| double |
Specifies a double outliner |
| groove |
Specifies a 3D grooved outline. The effect depends on the
outline-color value |
| ridge |
Specifies a 3D ridged outline. The effect depends on the
outline-color value |
| inset |
Specifies a 3D inset outline. The effect depends on the
outline-color value |
| outset |
Specifies a 3D outset outline. The effect depends on the
outline-color value |
| inherit |
Specifies that the outline style should be inherited
from the parent element |
 |
Try it Yourself - Examples |
Set the style of an outline
This example demonstrates how to set the style of an outline.
Related Pages
CSS tutorial: CSS Outline
CSS reference: outline property
HTML DOM reference: outlineStyle property
Complete CSS Reference
 |
W3Schools' Online Certification Program
The perfect solution for professionals who need to balance work, family, and career building.
More than 4000 certificates already issued!
|
The HTML Certificate documents your knowledge of HTML, XHTML, and CSS.
The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.
The XML Certificate documents your knowledge of XML, XML DOM and XSLT.
The ASP Certificate documents your knowledge of ASP, SQL, and ADO.
The PHP Certificate documents your knowledge of PHP and SQL (MySQL).
|