I am trying to style the font in the enter button as bold.
Here is my code:
<input type="submit" id="nm-match" class="nm-button" value="Match" />
Here is my CSS:
.nm-button { text-transform: uppercase; padding: 5px; color: blue; font-weight: bold; }
All styles are applied separately from bold.
Here JSFiddle shows the problem: http://jsfiddle.net/CJg43/1/
UPDATE: Why closed voices? Here's a screenshot of what it looks like for me on Chrome on MacOS:

UPDATE 2: ... and for comparison here, what it looks like with the solution ( background-color: white ) - http://jsfiddle.net/CJg43/23/

source share