Answers for "delete blue link on buttons css"

CSS
13

remove styles button

button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
Posted by: Guest on November-03-2020
7

css remove blue outline button

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

Browse Popular Code Answers by Language