#-webkit-autofill# #google # Enable form AutoFill If the yellow background is overwritten

Source: Internet
Author: User

When the form is automatically populated with the Google and opera browsers, the input box turns into a yellow background and a black font. Such as.

This will be inconsistent with the overall design style of the Web page, how to customize the style, to cover the yellow background.

Let's start by looking at what is causing, right-clicking on the element style:

Input:-webkit-autofill,textarea:-webkit-autofill, select:-webkit-autofill{    background-color: rgb (+, 255, 189);    background-image: none;    color: rgb (0, 0, 0); } at a glance,-webkit-autofill re-renders the background color and font color of input. Ok, reason found, solution also has, rewrite-webkit-autofill1, not workingInput:-webkit-autofill,textarea:-webkit-autofill, select:-webkit-autofill{ RGB (255, 255, 255); Background-image:none;ColorRGB (102, 102, 102);}2, not workingInput:-webkit-autofill,textarea:-webkit-autofill, select:-webkit-autofill{ RGB (255, 255, 255)!important; Background-image:none!important;ColorRGB (102, 102, 102)!important;}3, workingInput:-webkit-autofill,textarea:-webkit-autofill, select:-webkit-autofill{ -webkit-box-shadow:0 0 0 50px White inset; /* Change the color to your own background color */
-webkit-text-fill-color: #666;} The yellow fill color of the OK form is gone,

#-webkit-autofill# #google # When the form AutoFill is enabled, if the yellow background is overwritten

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.