HTML DOM Style outlineColor 属性
Style outlineColor 属性
Style 对象定义和用法
outlineColor 属性设置或返回元素周围的轮廓的颜色。
语法
设置 outlineColor 属性:
Object.style.outlineColor="color|invert|inherit"
返回 outlineColor 属性:
Object.style.outlineColor
值 | 描述 |
---|---|
color | 规定轮廓的颜色。在 CSS 颜色值 中寻找可能的颜色值的完整列表。 |
invert | 默认。反转轮廓的颜色为相反值。 |
inherit | 轮廓的颜色从父元素继承。 |
浏览器支持
所有主要浏览器都支持 outlineColor 属性。
注意:IE7 及更早的版本不支持 outlineColor 属性。IE8 只有规定了 !DOCTYPE 才支持 outlineColor 属性。IE9 支持 outlineColor 属性。
提示和注释
轮廓是围绕元素周围的线条。它是显示在元素的 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.outlineColor="#0000FF";
}
</script>
</head>
<body>
<div id="ex1">This is some text.</div>
<br>
<button type="button" onclick="displayResult()">Change outline color</button>
</body>
</html>
<head>
<style type="text/css">
#ex1
{
border:1px solid red;
outline:green dotted thick;
}
</style>
<script>
function displayResult()
{
document.getElementById("ex1").style.outlineColor="#0000FF";
}
</script>
</head>
<body>
<div id="ex1">This is some text.</div>
<br>
<button type="button" onclick="displayResult()">Change outline color</button>
</body>
</html>
尝试一下 »
Style 对象