Add an outline around a <div> element:
document.getElementById("myDiv").style.outline = "thick solid #0000FF";
Try it Yourself »
The outline property sets or returns all the outline properties, in a shorthand form.
With this property, you can set/return one or more of the following (in any order):
An outline is a line around an element. It is displayed around the margin of the element. However, it is different from the border property.
The outline is not a part of the element's dimensions, therefore the element's width and height properties do not contain the width of the outline.
Property | |||||
---|---|---|---|---|---|
outline | Yes | Yes | Yes | Yes | Yes |
Return the outline property:
object.style.outline
Set the outline property:
object.style.outline
= "width style color|initial|inherit"
Parameter | Description |
---|---|
width | Sets the width of the outline |
style | Sets the style of the outline |
color | Sets the color of the outline |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
Default Value: | medium none invert |
---|---|
Return Value: | A String, representing the outline width, style and/or color of an element |
CSS Version | CSS2 |
Change the width, style and color of the outline of a <div> element:
document.getElementById("myDiv").style.outline = "5px dotted green";
Try it Yourself »
Return the outline property values of a <div> element:
alert(document.getElementById("myDiv").style.outline);
Try it Yourself »
CSS tutorial: CSS Outline
CSS reference: outline property
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!