<input type="submit"
background: url(tick.png) bottom left no-repeat;
padding-left: 18px;
But the bevel goes away, how can I add an icon to submit button and keep the bevel?
Edit: I want it to look like the browser default.
|
|
|
|
|
|
|
Use border. For example:
|
||||
|
|
|
You could use border-style outset: border: 2px outset #cccccc; |
||
|
|
|
For a true button effect, I also like to introduce a hover or a focus style. Similar to what @Roburg has mentioned, I normally do something like:
This will give the illusion that the button has been pressed even though it isn't a true button, per se. |
||||||||
|
|
|
Why not use the html < button > element instead ? Much more easy to style. |
||
|
|
|
|
My old shop used to rock the input type="image" syntax - it works as Submit. As one of my favorite poker people likes to say, "all you can eat, baby!" - anything you want to put there as a graphic. |
||
|
|
|
|
Using <.input type="submit" /> with a background will look different depending on what browser / OS you're on. If you want to keep the browser styles, you could use the button element, which allows HTML inside the tag:
|
||
|