Thursday 26 June 2014

How to apply CSS on Hidden Button in HTML

CSS file:--
#btnPost[disabled="disabled"] {
    background: none;
}

html file:-
<button type='submit' class='leftArrow' id='btnPost' disabled='disabled'>Post</button>

This css file is used to remove the backgraound of the button.

No comments:

Post a Comment