Answers for "css button no style"

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
0

css button no style

button{
	background: none;
    outline: none;
    box-shadow: none
    border-radius: 0px;
}
Posted by: Guest on September-06-2021

Browse Popular Code Answers by Language