Answers for "automatic.css outline button"

CSS
0

disable button outline in css

button:focus {outline:0;}
Posted by: Guest on January-17-2021
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

Browse Popular Code Answers by Language