Style outlineColor 属性
 Style 对象
 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 属性不包含轮廓的宽度。
实例
实例
更改轮廓的颜色:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>代码学院(codexy.cn)</title>
<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">这是一些文本。</div>
<br>
<button type="button" onclick="displayResult()">修改外边框颜色</button>
<p><b>注意:</b> IE8 及以下版本如果要支持 outline 属性,则必须声明 !DOCTYPE。</p>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>代码学院(codexy.cn)</title>
<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">这是一些文本。</div>
<br>
<button type="button" onclick="displayResult()">修改外边框颜色</button>
<p><b>注意:</b> IE8 及以下版本如果要支持 outline 属性,则必须声明 !DOCTYPE。</p>
</body>
</html>
尝试一下 »
 Style 对象
 Style 对象			
						
			
 JavaScript 教程
JavaScript 教程 JavaScript 对象
JavaScript 对象 jQuery 教程
jQuery 教程 JSON 教程
JSON 教程 AngularJS 教程
AngularJS 教程 Angular 2 教程
Angular 2 教程 Vue.js 教程
Vue.js 教程 React 教程
React 教程 jQuery UI 教程
jQuery UI 教程 jQuery EasyUI 教程
jQuery EasyUI 教程 AJAX 教程
AJAX 教程 Highcharts 教程
Highcharts 教程 Google Maps API 教程
Google Maps API 教程 ES6 教程
ES6 教程 TypeScript教程
TypeScript教程 ES6 标准入门
ES6 标准入门