Reputation: 36
How would I make a submit button appear as just plain text which will override the default browser button style?
I have searched the internet but all I find is how to put a image for a submit button.
Upvotes: 0
Views: 6360
Reputation: 101
You could style it something like this, and then make the needed tweaks to it to make it fit the rest of your design.
input[type=submit]{
border: 0px;
background: inherit;
padding: 0;
}
The background: inherit;
is to make sure it follows your original background color.
Upvotes: 0
Reputation: 706
input[type=submit] {
border:none;
background-color:white;
}
And an example you can find here:
Upvotes: 1