HTML DOM outlineWidth Property
Complete Style Object Reference
Definition and Usage
The outlineWidth property sets the width of the outline around an element.
Syntax
Object.style.outlineWidth=thin|medium|thick|length
|
Possible Values
Value |
Description |
thin |
Defines a thin outline. |
medium |
Defines a medium outline. |
thick |
Defines a thick outline. |
length |
Allows you to define the thickness of the outlines. |
Example
The following example changes the width of the outline:
<html>
<head>
<style type="text/css">
p
{
border: thin solid #00FF00;
outline: thick solid #FF0000;
}
</style>
<script type="text/javascript">
function changeOutlineWidth()
{
document.getElementById("p1").style.outlineWidth="thin";
}
</script>
</head>
<body>
<input type="button" onclick="changeOutlineWidth()"
value="Change outline width" />
<p id="p1">This is a paragraph</p>
</body>
</html>
|
Try-It-Yourself Demos
outlineWidth - Change the width of the outline around an element
Complete Style Object Reference
|
|
Get Your Diploma!
W3Schools' Online Certification Program is the perfect solution for busy
professionals who need to balance work, family, and career building.
The HTML Certificate is for developers who want to document their knowledge of HTML, XHTML, and CSS.
The JavaScript Certificate is for developers who want to document their knowledge of JavaScript and the HTML DOM.
The XML Certificate is for developers who want to document their knowledge of XML, XML DOM and XSLT.
The ASP Certificate is for developers who want to document their knowledge of ASP, SQL, and ADO.
The PHP Certificate is for developers who want to document their knowledge of PHP and SQL (MySQL).
|
|