Jump to content

checkbox display differently in all browers


xcoderx

Recommended Posts

why is the checkbox showing differently in every browser? and in IE8 it do not even want to show the color green

 

#signup input[type=checkbox]{

width: 1em;

margin : 8px;

height: 1em;

background:none;

background-color:#F8FDFD;

color:#00CC00;

cursor:pointer;

}

 

<label for="terms">Accept our terms?</label>

        <input type="checkbox" name="terms" id="terms"/>

            </div>

          <div>

Each browser deals with inputs in its own way, and is a major reason why its best not to style them. IE8 maybe doesn't allow background color on checkboxes.

 

Also, the selector you are using is part of the CSS3 spec, and isn't recognized by all browsers, so that's probably why some of them are ignoring the CSS.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.