How To Reset All Default Styles Of The Html5 Button Element
Scenario I use the
Solution 1:
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
add this one also in css it will solve your problem.
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
add this one also in css it will solve your problem.
You may like these posts
Post a Comment for "How To Reset All Default Styles Of The Html5 Button Element"