css – svg中圆圈的双笔划颜色

前端之家收集整理的这篇文章主要介绍了css – svg中圆圈的双笔划颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这就是我用中风而没有填充的方式
fill: none !important;
stroke-width: 1px;

>我想要双击.

解决方法

遗憾的是,您无法将SVG设置为双击,只有虚线或实线.

相反,只需创建一个完全相同的元素,但要减少它所需的大小/半径.

.circle {
  fill: none;
  stroke: black;
}
<svg height="100" width="100">
  <circle class="circle" cx="50" cy="50" r="40" stroke-width="1" />
  <circle class="circle" cx="50" cy="50" r="38" stroke-width="1" />
</svg>
原文链接:https://www.f2er.com/css/242222.html

猜你在找的CSS相关文章