0

I'm making a project for school, but I'm stuck on this problem: I want an input submit, but instead of the button I want an icon to click on. I have not figured it out yet after searching for other answers.

<form>
    <input type="submit" id="submit-icon">
</form>

1 Answers1

0

If you absolutely must use input, try this:

background-image: url(...);
background-repeat: no-repeat;
background-position: <left|right>;
padding-<left|right>: <width of image>px;

It's usually a little easier to use a button with an img inside:

<button type="submit"><img> Text</button>
Razia sultana
  • 2,168
  • 3
  • 15
  • 20