Answers for "reset input styles html"

CSS
13

reset submit input style

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
1

reset all input styles with 1 property css

all: unset;
Posted by: Guest on April-21-2021

Browse Popular Code Answers by Language