I'm facing an issue with applying consistent stroke width to my CSS on a webpage. Here is the code snippet I am using:
path {
fill: none;
stroke-width: 10pt;
stroke: red;
}
Despite this, the rendering appears differently on certain SVGs. You can see an example here: http://jsfiddle.net/kaoo1jdb/
It seems like a simple problem but I can't seem to figure it out. My guess is that it might be due to scaling effects, but I'm unsure how to resolve it.
If anyone has any insights or solutions, I would greatly appreciate it!
Thank you in advance.