Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

On a form I'm working on, Chrome is auto-filling the email and password fields. This is fine, however, Chrome changes the background colour to a pale yellow colour.

The design I'm working on is using light text on a dark background, so this really messes up the look of the form - I have stark yellow boxes and near-invisible white text. Once the field is focused, the fields return to normal.

Is it possible to stop Chrome changing the colour of these fields?

share|improve this question
1  
Here you have wider information: stackoverflow.com/questions/2338102/… – dasm Jan 30 '12 at 10:28
See my answer to a similar post: stackoverflow.com/a/13691346/336235 – Ernests Karlsons Dec 3 '12 at 20:46

10 Answers

up vote 21 down vote accepted

i know its stupid! but i think its work :P

// change the white to any color ;)
    input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0px 1000px white inset;
    }
share|improve this answer
3  
I wish I could give this all the upvotes. Best solution as of 2013 – jdhartley Jan 28 at 8:20
3  
Hey, THIS one is working ! (you can change the color of course, but not set it to transparent. Anyway, you will usually need a plain color) Thanks !... – Orabîg Feb 1 at 0:35
1  
@Orabîg already mentioned it... but why are we not able to set the bg to transparent? – Sprottenwels Apr 26 at 13:13
because we don't remove the yellow bg we instead use a tricky way to cover the yellow bg using a white inner shadow – fareed namrouti Apr 27 at 20:27

This has been as designed since this coloring behavior has been from WebKit. It allows the user to understand the data has been prefilled. Bug 1334

You could turn off autocomplete by doing (or on the specific form control:

<form autocomplete="off">
...
</form

Or you can change the colour of the autofill by doing:

input:-webkit-autofill {
    color: #2a2a2a !important;
}

Note, there is a bug being tracked for this to work again: http://code.google.com/p/chromium/issues/detail?id=46543

This is a WebKit behavior.

share|improve this answer
10  
thanks but that webkit CSS rule isn't working. The user agent stylesheet is always overruling the background color, even with it (a) set to !important and (b) targeted with an ID for higher specificity. It looks like Chrome is always going to override it. Removing autocomplete does seem to work, but it's really not what I want to do. – DisgruntledGoat May 29 '10 at 11:54
1  
Some people have the same issue, did you check the bug post? code.google.com/p/chromium/issues/detail?id=1334 – Mohamed Mansour May 30 '10 at 14:59
4  
Chrome blocks any CSS attempts to override that yellow color. Setting autocomplete="off" will certainly raise accessibility issues. Why is this answer marked as correct anyway? – João Ramos Apr 4 '12 at 9:43
@JoãoRamos That is a Chrome bug, code.google.com/p/chromium/issues/detail?id=46543 – Mohamed Mansour Aug 6 '12 at 12:46

If you want to keep the autocomplete functionality intact you can use a bit of jQuery to remove Chrome's styling. I wrote a short post about it here: http://www.benjaminmiles.com/2010/11/22/fixing-google-chromes-yellow-autocomplete-styles-with-jquery/

if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) {
$(window).load(function(){
    $('input:-webkit-autofill').each(function(){
        var text = $(this).val();
        var name = $(this).attr('name');
        $(this).after(this.outerHTML).remove();
        $('input[name=' + name + ']').val(text);
    });
});}
share|improve this answer
This seems to be the best solution, although it blocks Kicksend's mailcheck. Any ideas on how to work this around? – João Ramos Apr 4 '12 at 9:52
Here's what I'm using, btw. – João Ramos Apr 9 '12 at 9:01

A possible workaround for the moment is to set a "strong" inside shadow:

input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own background color */
    -webkit-text-fill-color: #333;
}

input:-webkit-autofill:focus {
    -webkit-box-shadow: /*your box-shadow*/,0 0 0 50px white inset;
    -webkit-text-fill-color: #333;
}  
share|improve this answer

I have developed another solution using JavaScript without JQuery. If you find this useful or decide to re-post my solution, I only ask that you include my name. Enjoy. – Daniel Fairweather

var documentForms = document.forms;

for(i = 0; i < documentForms.length; i++){
    for(j = 0; j < documentForms[i].elements.length; j++){
        var input = documentForms[i].elements[j];

        if(input.type == "text" || input.type == "password" || input.type == null){
            var text = input.value;
            input.focus();
            var event = document.createEvent('TextEvent');
            event.initTextEvent('textInput', true, true, window, 'a');
            input.dispatchEvent(event);
            input.value = text;
            input.blur();
        }
    }
}

This code is based on the fact that Google Chrome removes the Webkit style as soon as additional text is entered. Simply changing the input field value does not suffice, Chrome wants an event. By focusing on each input field (text, password), we can send a keyboard event (the letter 'a') and then set the text value to it's previous state (the auto-filled text). Keep in mind that this code will run in every browser and will check every input field within the webpage, adjust it accordingly to your needs.

share|improve this answer
Doesn't seem to work for me. – João Ramos Apr 4 '12 at 9:46

Thanks Benjamin!

The Mootools solution is a little more tricky, as I can't get fields by using $('input:-webkit-autofill'), So what I've used is the following:

if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) {

  window.addEvent('load', function() {
    setTimeout(clearWebkitBg, 20);
    var elems = getElems();
    for (var i = 0; i < elems.length; i++) {
      $(elems[i]).addEvent('blur', clearWebkitBg);
    }
  });
}
function clearWebkitBg () {
  var elems = getElems();
  for (var i = 0; i < elems.length; i++) {
    var oldInput = $(elems[i]);
    var newInput = new Element('input', {
      'name': oldInput.get('name'),
      'id': oldInput.get('id'),
      'type': oldInput.get('type'),
      'class': oldInput.get('class'),
      'value': oldInput.get('value')
    });
    var container = oldInput.getParent();
    oldInput.destroy();
    container.adopt(newInput);
  }
}
function getElems() {
  return ['pass', 'login']; // ids
}
share|improve this answer

This guy has a great solution using JS and works perfectly.

share|improve this answer
It's a pretty solution, but input fields loose attached events. – Ernests Karlsons Dec 3 '12 at 20:46

ha sorry wrong place, but for HTML 5 search bars a Pure Css solution, I don't know if its very good standards practice but you can change the webkit appearance of the search to a button then just style it how you want.

input[type=search]{
-webkit-appearance:button;
}
share|improve this answer

A solution I found was to replace the form tag with a div and use javascript to do the form submission. Though this probably not xhtml-strict compliant, it works.

share|improve this answer
5  
It's not accessible either. – DisgruntledGoat Jan 30 '12 at 11:00
1  
And it's just horrible. – Chris Harrison Dec 1 '12 at 6:04

It might be a little late but for future referent there is a CSS ONLY solution as Olly Hodgons shows here http://lostmonocle.com/post/1479126030/fixing-the-chrome-autocomplete-background-colour

All you have to do is to add a further selector to overwrite the default input fields setting So use instead of

input:-webkit-autofill {
    background-color: #FAFFBD !important;
}

Somthing like

#login input:-webkit-autofill {
    background-color: #ff00ff;
}

or

form input:-webkit-autofill {
    background-color: #f0f;
}

which seems to work fine with me.

share|improve this answer
1  
Doesn't seem to be working in latest Chrome (01/12/2012) : Version 23.0.1271.95 m – Chris Harrison Dec 1 '12 at 6:06
Downvote reason: Doesn't work in the latest Chrome version (01/04/2013) – Simon Arnold Jan 7 at 15:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.