Styling Checkbox – CSS Tips

September 6, 2018
CSS on a computer screen

Testable Network Layer in Swift  -  Part 1

How to style a checkbox without using any CSS framework.

css-styling-for-checkboxes

Let’s get to the point. Here is what a normal checkbox looks like:

css-styling-for-checkboxes
(Default Checkbox)

How do we go about styling a normal checkbox?

HTML input-type checkboxes cannot be customized with any properties, so we have to get creative with how we customize the input element.

What? How?

Step 1: Hide the input element.

Step 2: Add an extra span element and apply your custom style by creating a class.

#1 — Hiding the Input

There are three ways to hide an HTML element.

  • Display: None
  • Visibility: Hidden
  • Opacity: 0

If we set display:none, then any event listeners (like click listeners) on that element will not work. We need functioning event listeners because the checkbox has to toggle its state from checked to unchecked when a user clicks on it.

Similarly, the problem with  visibility:hidden is that some of the events won’t work with this property set.

If we set opacity:0, the element will be invisible but all the event listeners will still work; therefore, this is the property we will use to achieve our customization.

CSS:

cjeckbox-label

With opacity:0 in place, you can expect your checkbox to look like this:

#2 — Adding a Span Element

Why do we need a span element? Since we’re hiding the input checkbox and showing a custom-styled element that appears and behaves like a checkbox in its place, we use span as the placeholder element.  We use span  over block elements like div because it is an inline element that doesn’t take up the entire width.

Here is what our updated HTML would look like:

styling checkbox css

Let’s style the custom checkbox for unchecked state:

styling-checkbox-css

And again for checked state:

styling-checkbox-css

Now we can see our work in action:

css-styling-for-checkbox

One last thing!

Let’s incorporate some fun by adding transition animation when the state changes from unchecked to checked and vice versa.

css styling for checkbox

With ripple effect:

css styling for checkbox


Let's build something awesome.

Reach out to us to discuss app development services for your company. We'll get back to you within 24 business hours.

Send us a message
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.