I am looking to create a horizontal line that is 10px wide. I tried using the code below
<svg width="500" >
<line x1="100" x2="460" y1="0" y2="0" stroke="red" stroke-width="10px"></line>
</svg>
However, when using the above code, the line only appears as 5px wide. What modifications do I need to make in order to achieve a 10px wide line?