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

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

android - Keyboard hides my half of edit-text and button below it even in scroll view -