↧
Answer by Daniel Jonce Evans for CSS issue styling button
I think the button's background and borders are the cause of your headache.Try something like this:.custombtn { margin: 10px; width:163px; height:43px; background-image:url('images/normal.png');...
View ArticleAnswer by Orville Patterson for CSS issue styling button
You need to set the border to none. That should definitely solve the problem and make sure there is no white space in the image itself.
View ArticleAnswer by smitelli for CSS issue styling button
You need to explicitly set border:none; background-color:transparent; on .custombtn.
View ArticleCSS issue styling button
I'm attempting to style a button with CSS. Here is the HTML code for the button:<button class='custombtn' name="doLogin" type="submit" id="doLogin3" value="Login">Login</button>Here is the...
View Article