- HTML 教程
- HTML - 首页
- HTML - 路线图
- HTML - 简介
- HTML - 历史与演变
- HTML - 编辑器
- HTML - 基本标签
- HTML - 元素
- HTML - 属性
- HTML - 标题
- HTML - 段落
- HTML - 字体
- HTML - 块
- HTML - 样式表
- HTML - 格式化
- HTML - 引用
- HTML - 注释
- HTML - 颜色
- HTML - 图片
- HTML - 图片地图
- HTML - Iframes
- HTML - 短语元素
- HTML - 元标签
- HTML - 类
- HTML - ID
- HTML - 背景
- HTML 表格
- HTML - 表格
- HTML - 表头与标题
- HTML - 表格样式
- HTML - 表格 Colgroup
- HTML - 嵌套表格
- HTML 列表
- HTML - 列表
- HTML - 无序列表
- HTML - 有序列表
- HTML - 定义列表
- HTML 链接
- HTML - 文本链接
- HTML - 图片链接
- HTML - 邮件链接
- HTML 颜色名称与值
- HTML - 颜色名称
- HTML - RGB
- HTML - HEX
- HTML - HSL
- HTML 表单
- HTML - 表单
- HTML - 表单属性
- HTML - 表单控件
- HTML - 输入属性
- HTML 媒体
- HTML - 视频元素
- HTML - 音频元素
- HTML - 嵌入多媒体
- HTML 头部
- HTML - Head 元素
- HTML - 添加 Favicon
- HTML - Javascript
- HTML 布局
- HTML - 布局
- HTML - 布局元素
- HTML - 使用 CSS 进行布局
- HTML - 响应式设计
- HTML - 符号
- HTML - 表情符号
- HTML - 样式指南
- HTML 图形
- HTML - SVG
- HTML - Canvas
- HTML API
- HTML - Geolocation API
- HTML - 拖放 API
- HTML - Web Workers API
- HTML - WebSocket
- HTML - Web 存储
- HTML - 服务器发送事件
- HTML 其他
- HTML - 文档对象模型 (DOM)
- HTML - MathML
- HTML - 微数据
- HTML - IndexedDB
- HTML - Web 消息传递
- HTML - Web CORS
- HTML - Web RTC
- HTML 演示
- HTML - 音频播放器
- HTML - 视频播放器
- HTML - 网页幻灯片
- HTML 工具
- HTML - Velocity Draw
- HTML - 二维码
- HTML - Modernizer
- HTML - 验证
- HTML - 颜色选择器
- HTML 参考
- HTML - 速查表
- HTML - 标签参考
- HTML - 属性参考
- HTML - 事件参考
- HTML - 字体参考
- HTML - ASCII 码
- ASCII 码表查询
- HTML - 颜色名称
- HTML - 实体
- MIME 媒体类型
- HTML - URL 编码
- 语言 ISO 代码
- HTML - 字符编码
- HTML - 已弃用的标签
- HTML 资源
- HTML - 快速指南
- HTML - 有用资源
- HTML - 颜色代码生成器
- HTML - 在线编辑器
HTML - DOM样式对象 borderImageOutset 属性
HTML DOM 样式对象 **borderImageOutset** 属性指定边框图像区域超出边框框的程度。
语法
以下是获取或设置 borderImageOutset 属性的语法。
设置 borderImageOutset 属性object.style.borderImageOutset= "length | number | initial | inherit";获取 borderImageOutset 属性
object.style.borderImageOutset;
属性值
值 | 描述 |
---|---|
长度 (length) | 它指定图像从边框框延伸的距离。它最多接受 4 个值,每个值对应一个边。如果省略第四个值,则其值将与第二个值相同;如果省略第三个值,则其值将与第一个值相同;如果省略第二个值,则其值将与第一个值相同。 |
数字 (number) | 它指定边框宽度的倍数。它接受十进制值。 |
初始值 (initial) | 用于将此属性设置为其默认值。 |
继承 (inherit) | 用于继承其父元素的属性。 |
返回值
它返回一个字符串值,表示元素的 border image outset 属性。
HTML DOM 样式对象“borderImageOutset”属性的示例
以下示例演示了如何为每一侧添加和设置边框图像突出。
添加边框图像突出
以下示例添加了边框图像突出。
<!DOCTYPE html> <html lang="en"> <head> <title> HTML DOM Style Object borderImageOutset Property </title> <style> #outset { border: 20px solid transparent; margin: 20px; border-image: url("/tensorflow/images/tensorflow.jpg") 30 round; border-image-outset: 5px; background-color: #04af2f; } </style> </head> <body> <p>Change Outset</p> <button onclick="fun()"> Change Border Outset </button> <br><br><br> <p id="outset"> This is a sample paragraph containing some text. This paragraph is created only for the sake of this example. </p> <script> function fun() { document.getElementById("outset") .style.borderImageOutset = "20px"; } </script> </body> </html>
为每一侧设置边框图像突出
以下示例根据单击的按钮为每一侧设置边框图像突出。
<!DOCTYPE html> <html lang="en"> <head> <title> HTML DOM Style Object borderImageOutset Property </title> <style> #outset { border: 20px solid transparent; margin: 20px; border-image: url("/tensorflow/images/tensorflow.jpg") 30 round; border-image-outset: 5px; background-color: #04af2f; } </style> </head> <body> <p>Change Outset</p> <button onclick="fun()">Change</button> <button onclick="funTwo()">Two</button> <button onclick="funThree()">Three</button> <button onclick="funFour()">Four</button> <br><br><br> <p id="outset"> This is a sample paragraph containing some text. This paragraph is created only for the sake of this example. </p> <script> function fun() { document.getElementById("outset") .style.borderImageOutset = "20px"; } function funTwo() { document.getElementById("outset") .style.borderImageOutset = "20px 10px"; } function funThree() { document.getElementById("outset") .style.borderImageOutset = "20px 10px 30px"; } function funFour() { document.getElementById("outset") .style.borderImageOutset = "20px 10px 30px 40px"; } </script> </body> </html>
使用“数字”设置边框图像突出
以下示例使用 number 属性值(接受十进制数)设置边框图像突出。
<!DOCTYPE html> <html lang="en"> <head> <title> HTML DOM Style Object borderImageOutset Property </title> <style> #outset { border: 20px solid transparent; margin: 20px; border-image: url("/tensorflow/images/tensorflow.jpg") 30 round; border-image-outset: 5px; background-color: #04af2f; } </style> </head> <body> <p>Change Outset</p> <button onclick="fun()">Change</button> <br><br><br> <p id="outset"> This is a sample paragraph containing some text. This paragraph is created only for the sake of this example. </p> <script> function fun() { document.getElementById("outset") .style.borderImageOutset = "2.3"; } </script> </body> </html>
支持的浏览器
属性 | |||||
---|---|---|---|---|---|
borderImageOutset | 是 15 | 是 12 | 是 11 | 是 6 | 是 15 |
html_dom_style_object_reference.htm
广告