<input type="text">
html, body {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
input {
border: 2px solid #ccc;
font: 20px/20px 'Verdana';
padding: 8px;
outline: none; // Убираем обводку
// Магия CSS
&:-webkit-autofill {
-webkit-box-shadow: inset 0 0 0 50px #fff !important; /* Цвет фона */
-webkit-text-fill-color: #999 !important; /* цвет текста */
color: #999 !important; /* цвет текста */
}
&:focus {
border-color: #40B4EA;
}
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.