outline-width: thin | medium | thick | <length>
相关属性:outline , outline-color , outline-style , outline-offset
哎呀,出了点小问题,您可以稍后重试!
未填写内容或格式不正确!
outline-width: thin | medium | thick | <length>
相关属性:outline , outline-color , outline-style , outline-offset
outline-width 属性设置元素整个轮廓的宽度,只有当轮廓样式不是 none 时,这个宽度才会起作用。如果样式为 none,宽度实际上会重置为 0。不允许设置负长度值。参见outline属性。
| 类型 | Internet Explorer |
Firefox |
Chrome |
Opera |
Safari |
|---|---|---|---|---|---|
| 版本 | (×)IE6 | (√)Firefox 3.0.10 | (√)Chrome 2.0.x | (√)Opera 9.64 | (√)Safari 4 |
| (×)IE7 | (√)Firefox 3.5 | ||||
| (√)IE8 | |||||
.outline_width{
width:200px;
height:80px;
margin:10px;
padding:15px;
background:#f0f3f9;
outline:dotted #beceeb;
outline-width:3px;
outline-offset:5px;
}
<div class="outline_width">是否可见背景外3像素的虚线形式的轮廓外框?</div>