Answers for "removing color and border on read more button"

CSS
7

css remove blue outline button

button {
  outline: none;
}
Posted by: Guest on March-18-2020
1

removing the unwanted border button css

button,
button:active,
button:focus {
  outline: none;
}
Posted by: Guest on November-19-2020

Code answers related to "removing color and border on read more button"

Browse Popular Code Answers by Language