HTML DOM outline 属性

HTML DOM Style 对象参考手册

定义和用法

outline 属性在一个声明中设置所有轮廓属性。

语法:

Object.style.outline = outlineWidth outlineStyle outlineColor

可能的值

描述
outlineWidth 设置轮廓的宽度。
  • thin
  • medium
  • thick
  • length
outlineStyle 设置轮廓的样式。
  • none
  • hidden
  • dotted
  • dashed
  • solid
  • double
  • groove
  • ridge
  • inset
  • outset
outlineColor 设置轮廓的颜色。
  • color-name
  • color-rgb
  • color-hex
  • transparent

实例

下面的例子改变段落周围的轮廓:

<html>
<head>
<style type="text/css">
p
{
border: thin solid #00FF00;
outline: thick solid #FF0000;
}
</style>
<script type="text/javascript">
function changeOutline()
{
document.getElementById("p1").style.outline="thin dotted #0000FF";
}
</script>
</head>
<body>

<input type="button" onclick="changeOutline()"
value="Change outline" />

<p id="p1">This is a paragraph</p>

</body>
</html>

TIY

outline - 改变元素周围的轮廓(请在非 IE 浏览器中浏览)

HTML DOM Style 对象参考手册