最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - SVG rectangle's stroke widths are cut off on topleft. How do I fix this? - Stack Overflow

programmeradmin1浏览0评论

My SVG's strokes are somehow cut off when I have a large stroke width for my rectangle. I have the following code:

<svg width="500px" height="300px">
    <rect width="352" height="128" stroke="#333" stroke-width="16" fill-opacity="0"/>
</svg>

Here's the jsfiddle: /

As you can see from the jsfiddle, the stroke widths are cut slightly for the top and left sides of the rectangle. How do I fix this such that the stroke widths are 16 pixels across the entire rectangle?

I believe I can change the x and y positions of the rectangle, but I believe that wouldn't be very robust if I wanted to change the stroke width later on. Any ideas?

My SVG's strokes are somehow cut off when I have a large stroke width for my rectangle. I have the following code:

<svg width="500px" height="300px">
    <rect width="352" height="128" stroke="#333" stroke-width="16" fill-opacity="0"/>
</svg>

Here's the jsfiddle: https://jsfiddle/7ej6fzbg/3/

As you can see from the jsfiddle, the stroke widths are cut slightly for the top and left sides of the rectangle. How do I fix this such that the stroke widths are 16 pixels across the entire rectangle?

I believe I can change the x and y positions of the rectangle, but I believe that wouldn't be very robust if I wanted to change the stroke width later on. Any ideas?

Share Improve this question asked Aug 28, 2016 at 3:11 sjscsjsc 4,67211 gold badges42 silver badges56 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

Since the rect strokes are centered on the boundary of the rectangle, either use half the stroke width every time (8 in this case) for X and Y:

<svg width="500px" height="300px">
    <rect x="8" y="8" width="352" height="128" stroke="#333" stroke-width="16" fill-opacity="0"/>
</svg>

or offset the viewbox of the SVG by half the stroke width:

<svg width="500px" height="300px" viewbox="-8 -8 492 292">
    <rect width="352" height="128" stroke="#333" stroke-width="16" fill-opacity="0"/>
</svg>
发布评论

评论列表(0)

  1. 暂无评论