css - button tag vs anchor tag in firefox, problems with text -
what causing problem shown below firefox? first button styled anchor tag , second 1 html5 button tag. in chrome both identical in firefox can see problem "login" text.
html:
<a href="#" class="buttondark">login<span>›</span></a> <button type="submit" name="submit" class="buttondark">login<span>›</span></button>
the image showing problem can found here -->image
try adding following code:
::-moz-focus-inner { padding:0; border:0; }
firefox has button problems galore. fixes them because 'chrome' firefox uses defined padding , border, can't see either, usually. there can have little dotted border around selected inputs.
Comments
Post a Comment