Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6095707
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:50:33+00:00 2026-05-23T12:50:33+00:00

Is it possible to style the HTML checkbox without using javascripts? This code for

  • 0

Is it possible to style the HTML checkbox without using javascripts?
This code for example will work fine with IE, but not on Firefox or Chrome.
http://jsfiddle.net/5wJxF/
Any suggestions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T12:50:34+00:00Added an answer on May 23, 2026 at 12:50 pm

    YES. It is possible.

    You can’t directly style the checkbox element, but the effect you’re looking for can be achieved if you use a <label> element in conjunction with the checkbox, and style that.

    <input type="checkbox" id="field1" class="mycheckbox" />
    <label for="field1" class="mycheckbox-label">Label here</label>
    

    And then your CSS would look like this:

    .mycheckbox {
      display:none;
    }
    
    .mycheckbox + label {
      padding:20px; /*or however wide your graphic is*/
      background:url(/fancy-unchecked.gif) no-repeat left center;
    }
    
    .mycheckbox:checked + label {
      background:url(/fancy-checked.gif) no-repeat left center;
    }
    

    Here is a working example: http://jsfiddle.net/TVaPX/ (tested with Firefox 5)

    The trouble with this approach is that it only works in modern browsers. Older browsers may not support the :checked or + CSS selectors. But if you’re okay with not supporting older versions of IE, then this will work. The example above does not work in IE8 (it supports + but not :checked).

    If you’re not comfortable with that, then you’ll have to stick with a Javascript solution.

    However, with an approach similar to this, you can still do it with very minimal amounts of Javascript code: simply have a one-line JS that toggles the class of the checkbox when it’s checked, and you can use all the above code, but with the alternate classname instead of the :checked selector. That will work in IE7 and IE8.

    Hope that helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that it's not possible to style any given PHP but I do
Is it possible to apply a style to an HTML element using only its
A number of swing text components will interpret HTML. I'd like to style this
Is it possible, with only CSS, to style an HTML label dependent on its
Possible Duplicate: Why does C# not provide the C++ style ‘friend’ keyword? I'd like
Is it possible to construct a PCRE-style regular expression that will only match each
Is it possible to style the HTML Select attribute to be more flat looking?
Using the display property, HTML elements become interchangeable from a styling perspective. This doesn't
I'd like to assign a style to a HTML element - but only in
is it possible to set the style of alternating rows in a html table

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.