我想在屏幕上畫出多條線路,但由於某些原因的第三行被繪製比,即使我已經指定了相同的厚度每個元素的其餘部分厚:SVG繪製線條不同厚度
<svg height="210" width="500" style="margin-left:100px;margin-top:100px;">
<line x1="0" y1="0" x2="200" y2="0" style="stroke:rgb(50, 50, 50);stroke-width:1" />
<line x1="0" y1="0" x2="0" y2="200" style="stroke:rgb(50, 50, 50);stroke-width:1" />
<line x1="0" y1="200" x2="200" y2="200" style="stroke:rgb(50, 50, 50);stroke-width:1" />
</svg>
如果我刪除了前兩行,第三行還給出了奇怪的厚度問題,我注意到,如果我第三行設置Y2爲0,線條粗細消失,但如果它的設置,那麼它仍然很厚,即使它沒有旋轉。我似乎無法找到關於此問題的任何信息,這種情況發生在Chrome和Firefox上。有什麼建議麼?謝謝!
咄,我是一個虛擬的,謝謝! – 0x29a