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>

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.