Programming Tips - CSS: style all kinds of buttons the same way

Date: 2020aug7 Language: css Q. CSS: style all kinds of buttons the same way A. There are 3 kinds of buttons: <button>One</button> <input type='button' value='Two'> <input type='submit' value='Three'> So, style them like this:
button, input[type="button"], input[type="submit"] { /* Add what ever you want here, for example... */ border-color: #ccc; border-style: solid; }