天天看点

Style outlineWidth 属性

Style 对象

定义和用法

outlineWidth 属性设置或返回元素周围的轮廓的宽度。

语法

设置 outlineWidth 属性:

Object.style.outlineWidth="thin|medium|thick|length|inherit"

返回 outlineWidth 属性:

Object.style.outlineWidth

描述
thin 定义细的轮廓。
medium 默认。定义中等的轮廓。
thick 定义粗的轮廓。
length 使用 px、cm 等单位定义轮廓的宽度。
inherit 轮廓的宽度从父元素继承。

浏览器支持

Style outlineWidth 属性
Style outlineWidth 属性
Style outlineWidth 属性
Style outlineWidth 属性
Style outlineWidth 属性

所有主要浏览器都支持 outlineWidth 属性。

注意:

IE7 及更早的版本不支持 outlineWidth 属性。IE8 只有规定了 !DOCTYPE 才支持 outlineWidth 属性。IE9 支持 outlineWidth 属性。

提示和注释

轮廓是围绕元素周围的线条。它是显示在元素的 margin 的周围。但是,它与 border 属性不同。

轮廓不是元素尺寸的一部分,因此元素的 width 和 height 属性不包含轮廓的宽度。

实例

更改轮廓的宽度:

<html>

<head>

<style type="text/css">

#ex1

{

border:1px solid red;

outline:green dotted thick;

}

</style>

<script>

function displayResult()

document.getElementById("ex1").style.outlineWidth="10px";

</script>

</head>

<body>

<div id="ex1">This is some text.</div>

<br>

<button type="button" onclick="displayResult()">Change outline

width</button>

</body>

</html>

Style 对象