Answers for "how to make a button make a image appear"

CSS
2

how to put image in button css

input.button-add {
  height: 32px;
  padding-left: 36px;
  padding-right: 10px;
  border: 1px solid #000000;
  background: #ff9900 url("http://placehold.it/16x16") no-repeat 10px center;
  cursor: pointer;
}
Posted by: Guest on June-21-2021
0

how to add a button image

<!DOCTYPE.HTML>
<html>
<head>
<link rel="stylesheet" href="style.css">
  </head>
  <body>
    <a href="whatever.html">
  <img src="whatever.png or jpg or jpeg or svg">
  </a>
  </body>
</html>
Posted by: Guest on December-13-2021

Code answers related to "how to make a button make a image appear"

Browse Popular Code Answers by Language