Answers for "reset button css"

11

css button no style

button {
  background: transparent;
  box-shadow: 0px 0px 0px transparent;
  border: 0px solid transparent;
  text-shadow: 0px 0px 0px transparent;
}

button:hover {
  background: transparent;
  box-shadow: 0px 0px 0px transparent;
  border: 0px solid transparent;
  text-shadow: 0px 0px 0px transparent;
}

button:active {
  outline: none;
  border: none;
}

button:focus {
  outline: 0;
}
Posted by: Guest on May-26-2020
4

reset button html

<input type="reset" value="Reset" />
Posted by: Guest on February-23-2020

Browse Popular Code Answers by Language