css中设置长虚线边框
时间: 2023-09-14 16:02:32 浏览: 202
html设置虚线边框的方法
可以使用border-style属性设置边框的样式为dashed,并且使用border-width属性设置边框的宽度,如下所示:
```css
border-style: dashed;
border-width: 3px;
```
如果要设置长虚线边框,可以使用border-style属性的特殊值为"longdash"或"longdash-dot",如下所示:
```css
border-style: longdash;
border-width: 3px;
```
或者
```css
border-style: longdash-dot;
border-width: 3px;
```
这样就可以设置长虚线边框了。需要注意的是,不是所有浏览器都支持长虚线边框,所以在使用时需要进行兼容性测试。
阅读全文