JSFiddle - React, Tailwind, and code Playground
by bogdanm
HTML
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<div>
<!-- Comment line out for testing -->
<input style="display: none;" autocomplete="cc-csc"/>
<label>Nummer</label>
<input type="text" />
<br>
<label>Name</label>
<input type="text" />
</div>
</body>
</html>
CSS
input {
border: 3px solid grey;
border-radius: 3px;
}
input:-webkit-autofill {
border: 3px solid blue;
}
input:autofill {
border: 3px solid blue;
}