I\'m trying to style the font in an input button as bold.
Here\'s my code:
When you use numeric values with the font-weight property and you want to use bold then use the value greater than or equal to 700
font-weight
bold
700
.nm-button { text-transform: uppercase; padding: 5px; color: blue; font-weight: 700; }
Js Fiddle Demo