Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个图像,它周围已经有一个边框。它是图像的一部分。我想使用 CSS 属性在我的图像周围绘制类似的边框。
我尝试了以下CSS代码...
border-style:dashed;
...但它并没有像我想要的那样绘制边界。下面是在图像本身具有边框的原始图像...
...这是我想使用 CSS 添加边框的图像
您似乎还需要填充和边框颜色:
img { padding: 3px; border: grey dashed 2px; }
结果 :
示范
试试边框图片
border-image:url(border.png) 30 30 round;