Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Padilo300/791cf45e757b68d22cbcc6088da8df23 to your computer and use it in GitHub Desktop.
Save Padilo300/791cf45e757b68d22cbcc6088da8df23 to your computer and use it in GitHub Desktop.
Chrome ебаный. Убрать родные стили жёлтого фона при автозаполнении формы , именно "input". Стили прописать в сам input прям в html. (В коментариях просить прощения, за css в нутри html!.)
<input type="text" name="email" placeholder="введите email" value="" style="
-webkit-text-fill-color: #ссс;
-webkit-box-shadow: 0 0 0px 1000px transparent inset;
transition: background-color 5000s ease-in-out 1s;
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(0,174,255,0.04) 50%,rgba(255,255,255,0) 51%,rgba(0,174,255,0.03) 100%);
">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment