- CSS 教程
- CSS - 首页
- CSS - 路线图
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 测量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图片
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - 块级边框
- CSS - 行内边框
- CSS - 外边距
- CSS - 列表
- CSS - 内边距
- CSS - 光标
- CSS - 轮廓
- CSS - 尺寸
- CSS - 滚动条
- CSS - 行内块
- CSS - 下拉菜单
- CSS - 可见性
- CSS - 溢出
- CSS - 清除浮动
- CSS - 浮动
- CSS - 箭头
- CSS - 调整大小
- CSS - 引号
- CSS - 顺序
- CSS - 定位
- CSS - 连字符
- CSS - 悬停
- CSS - 显示
- CSS - 焦点
- CSS - 缩放
- CSS - 位移
- CSS - 高度
- CSS - 连字符字符
- CSS - 宽度
- CSS - 不透明度
- CSS - Z-Index
- CSS - 底部
- CSS - 导航栏
- CSS - 覆盖层
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - 属性选择器
- CSS - 组合器
- CSS - 根元素
- CSS - 盒模型
- CSS - 计数器
- CSS - 剪裁
- CSS - 书写模式
- CSS - Unicode-bidi
- CSS - min-content
- CSS - all
- CSS - inset
- CSS - isolation
- CSS - overscroll
- CSS - justify-items
- CSS - justify-self
- CSS - tab-size
- CSS - pointer-events
- CSS - place-content
- CSS - place-items
- CSS - place-self
- CSS - max-block-size
- CSS - min-block-size
- CSS - mix-blend-mode
- CSS - max-inline-size
- CSS - min-inline-size
- CSS - offset
- CSS - accent-color
- CSS - user-select
- CSS 高级
- CSS - 网格
- CSS - 网格布局
- CSS - Flexbox
- CSS - 可见性
- CSS - 定位
- CSS - 层
- CSS - 伪类
- CSS - 伪元素
- CSS - @规则
- CSS - 文字效果
- CSS - 分页媒体
- CSS - 打印
- CSS - 布局
- CSS - 验证
- CSS - 图片精灵
- CSS - !important
- CSS - 数据类型
- CSS3 教程
- CSS3 - 教程
- CSS - 圆角
- CSS - 边框图片
- CSS - 多重背景
- CSS - 颜色
- CSS - 渐变
- CSS - 盒阴影
- CSS - box-decoration-break
- CSS - caret-color
- CSS - 文本阴影
- CSS - 文本
- CSS - 2D 变换
- CSS - 3D 变换
- CSS - 过渡
- CSS - 动画
- CSS - 多列
- CSS - box-sizing
- CSS - 工具提示
- CSS - 按钮
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 函数
- CSS - 数学函数
- CSS - 遮罩
- CSS - 形状
- CSS - 图片样式
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS RWD - 简介
- CSS RWD - 视口
- CSS RWD - 网格视图
- CSS RWD - 媒体查询
- CSS RWD - 图片
- CSS RWD - 视频
- CSS RWD - 框架
- CSS 工具
- CSS - PX 到 EM 转换器
- CSS - 颜色选择器和动画
- CSS 资源
- CSS - 有用资源
- CSS - 讨论
CSS - outline-width 属性
CSS **outline-width** 属性定义元素周围轮廓的宽度。轮廓是在元素边框外绘制的一条线。
语法
outline-width: medium | thin | thick | length | initial | inherit;
属性值
值 | 描述 |
---|---|
medium | 设置中等宽度的轮廓。默认值。 |
thin | 设置细轮廓。 |
thick | 设置粗边框。 |
length | 轮廓厚度以长度单位给出(例如 px、em、rem 等)。 |
initial | 将属性设置为其默认值。 |
inherit | 从父元素继承此属性。 |
CSS 轮廓宽度属性示例
以下示例使用不同的值解释了 **outline-width** 属性。
使用长度值的轮廓宽度属性
可以使用长度单位(例如 px、em、rem 等)设置元素轮廓的宽度。在以下示例中,使用了 'px' 和 'em' 值。
示例
<!DOCTYPE html> <html> <head> <style> .example { margin: 20px; padding: 10px; text-align: center; border: 4px dashed black; background-color: #08ff90; outline-color: red; outline-offset: 2px; outline-style: solid; } .ex1 { outline-width: 6px; } .ex2 { outline-width: 1em; } </style> </head> <body> <h2> CSS outline-width property </h2> <h4> outline-width: 6px </h4> <div class="example ex1"> This div has outline-width: 6px </div> <h4> outline-width: 1em </h4> <div class="example ex2"> This div has outline-width: 1em </div> </body> </html>
使用 thin 值的轮廓宽度属性
要将元素轮廓的宽度设置为细宽度,我们使用 **thin** 值。这在下面的示例中显示。
示例
<!DOCTYPE html> <html> <head> <style> .example { margin: 20px; padding: 10px; text-align: center; border: 4px dashed black; background-color: #08ff90; outline-color: red; outline-offset: 2px; outline-style: solid; outline-width: thin; } </style> </head> <body> <h2> CSS outline-width property </h2> <h4> outline-width: thin </h4> <div class="example"> This div has outline-width: thin </div> </body> </html>
使用 medium 值的轮廓宽度属性
要将元素轮廓的宽度设置为中等宽度,我们使用 **medium** 值。这在下面的示例中显示。
示例
<!DOCTYPE html> <html> <head> <style> .example { margin: 20px; padding: 10px; text-align: center; border: 4px dashed black; background-color: #08ff90; outline-color: red; outline-offset: 2px; outline-style: solid; outline-width: medium; } </style> </head> <body> <h2> CSS outline-width property </h2> <h4> outline-width: medium </h4> <div class="example"> This div has outline-width: medium </div> </body> </html>
使用 thick 值的轮廓宽度属性
要将元素轮廓的宽度设置为粗宽度,我们使用 **thick** 值。这在下面的示例中显示。
示例
<!DOCTYPE html> <html> <head> <style> .example { margin: 20px; padding: 10px; text-align: center; border: 4px dashed black; background-color: #08ff90; outline-color: red; outline-offset: 2px; outline-style: solid; outline-width: thick; } </style> </head> <body> <h2> CSS outline-width property </h2> <h4> outline-width: thick </h4> <div class="example"> This div has outline-width: thick </div> </body> </html>
支持的浏览器
属性 | |||||
---|---|---|---|---|---|
outline-width | 1.0 | 8.0 | 1.5 | 1.2 | 7.0 |
css_properties_reference.htm
广告