欢迎访问服务器技术网-www.fuwuqijishu.com

Style outlineWidth 属性

JavaScript fuwuqijishu 2年前 (2022-09-04) 43次浏览 0个评论 扫描二维码
文章目录[隐藏]

Style outlineWidth 属性

Style 对象


定义和用法

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

语法

设置 outlineWidth 属性:

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

返回 outlineWidth 属性:

Object.style.outlineWidth

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


浏览器支持

所有主要浏览器都支持 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 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2123.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900