Answers for "how to set button outline color in css"

CSS
7

css remove blue outline button

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

outline button css

.btn {
  border: 2px solid black;
  background-color: white;
  color: black;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
}

/* Green */
.success {
  border-color: #04AA6D;
  color: green;
}

.success:hover {
  background-color: #04AA6D;
  color: white;
}
Posted by: Guest on June-20-2021

Code answers related to "how to set button outline color in css"

Browse Popular Code Answers by Language