in reply to (OT) How to apply style (font color, etc) to button
Just add id or class attribute to your button element and add this rules to your CSS:
/*this is for id*/ #yourID { color: green; ....; } /*this is for class*/ .yourClass { color: green; ....; }
|
|---|