html - Setting stroke-width to 0 compatible with Android browser -
i trying set width of stroke 0 using following style:
.link { stroke: #6e6e6e; stroke-width: 0px; }
this works fine in chrome, safari, , mobile version of chrome on android. however, not work in android mobile browser (the default browser). stroke width comes out 1px instead of 0px. have tried -webkit-stroke-width: 0px; not solve issue.
i have encountered bug in older version of chrome, see https://code.google.com/p/chromium/issues/detail?id=15461
two solutions try: stroke: none
or stroke-width: 0.000001
Comments
Post a Comment