Creating Fancy Checkmark Icons with Pure CSS3
I was recently working on a personal project where I wanted to implement some cool “checkmark” icons like you see at left to spice up my unordered lists. I could’ve done it quite easily with the list-style-image property, but I was trying to keep my images and http requests to a minimum, so I wanted to figure out another way to do it (plus, the challenge sounded kind of fun).
I had just seen Nicolas Gallagher’s awesome pure css social media icons, though, and I thought, “If he can do that, than I could certainly create a simple check icon with just css3″. I did figure it out with some experimenting and testing, and today I’m going to show you how to achieve the same effect.
The #1 Rule of CSS3 Coding
Before we start on any project, we have to remember the number one rule of CSS3 coding. Well, actually it’s two rules:
- It must be cross-browser acceptable. I’m not talking identical, but a CSS3 technique is not very useful if it destroys the experience for users with older browsers. Use progressive enhancement.
- No worthless markup! I know CSS3 is fun, and it’s not bad to experiment, but if you have to add a whole bunch of non-semantic junk markup just to save yourself from needing to use an image, you’ve defeated the point.
These are the two principles that I regard to be the unchangeable law for using CSS3. So anyways, enough of my rant – I just feel with all the buzz about CSS3 that it’s very important to use it in a mature and responsible way. Let’s move on with the tutorial 🙂
The Concept
Before we can start coding, we have to figure out what approach we’re going to take to create these icons. How is it going to be done?
Taking some inspiration from Nicolas Gallagher’s work, I think the best way would be to use the :before and :after pseudoclasses to generate the round circle and the checkmark shape. By using the unicode no-break-space ( 0a0) as the content attribute, and the setting the display to block and styling it, we can create a huge variety of empty shapes. A checkmark icon lays well inside the boundaries of possiblity!
Also, in order to implement surefire progressive enhancement we’re going to use the :nth-of-type selector to make sure that only CSS3 capable browsers try to display the icons (older browsers will fall back on simple, default bullet-points). The :nth-of-type is a lifesaver and hugely useful for this, because the support for it lines up exactly with support for the border-radius and transform properties that will be necessary to render the icons.
The Code
OK, now that we’ve got the general concept figured out, we can start coding. We’ll start with the html for a basic, unordered list (copied from html-ipsum.com).
01.
<
ul
>
02.
<
li
>Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.li
>
03.
<
li
>Phasellus ultrices nulla quis nibh. Quisque a lectus. Donec consectetuer ligula vulputate sem tristique cursus. Nam nulla quam, gravida non, commodo a, sodales sit amet, nisi.li
>
04.
<
li
>Pellentesque fermentum dolor.li
>
05.
<
li
>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.li
>
06.
<
li
>Aliquam tincidunt mauris eu risus.li
>
07.
<
li
>Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.li
>
08.
<
li
>Vestibulum auctor dapibus neque.li
>
09.
ul
>
We’ll start with a very basic CSS style that will be applied to all browsers:
01.
ul{
02.
margin
:
12px
;
03.
padding
:
0
;
04.
}
05.
ul li{
06.
margin
:
0
0
12px
0
;
07.
font-size
: .
9em
;
08.
line-height
:
1em
;
09.
}
Now, onto the fun part. First, we’ll style the list items (for CSS3 browsers only) to have additional padding on the left (to make room for the icons), to be positioned relatively so that we can absolutely position the icons, and to hide the default bullets:
1.
body:nth-of-type(
1
) ul li{
2.
list-style-type
:
none
;
3.
padding
:
0
0
0
45px
;
4.
position
:
relative
;
5.
}
Now, using the :before pseudoclass we’ll add a small black circle to the left of each list-item – the first half of the icon. We use before so that it will nest behind the checkmark, which will be generated using :after. Here’s the code:
01.
body:nth-of-type(
1
) ul li:before{
02.
/*fill it with a blank space*/
03.
content
:
" 0a0"
;
04.
05.
/*make it a block element*/
06.
display
:
block
;
07.
08.
/*adding an 8px round border to a 0x0 element creates an 8px circle*/
09.
border
:
solid
9px
#000
;
10.
border-radius:
9px
;
11.
-moz-border-radius:
9px
;
12.
-webkit-border-radius:
9px
;
13.
height
:
0
;
14.
width
:
0
;
15.
16.
/*Now position it on the left of the list item, and center it vertically
17.
(so that it will work with multiple line list-items)*/
18.
position
:
absolute
;
19.
left
:
7px
;
20.
top
:
40%
;
21.
margin-top
:
-8px
;
22.
}
All that’s left is to create the checkmark and put it on top of the circle. We can do that very easily by giving the :after element a white border on the bottom and left, and then rotating it 45 degrees:
01.
body:nth-of-type(
1
) ul li:after{
02.
/*Add another block-level blank space*/
03.
content
:
" 0a0"
;
04.
display
:
block
;
05.
06.
/*Make it a small rectangle so the border will create an L-shape*/
07.
width
:
3px
;
08.
height
:
6px
;
09.
10.
/*Add a white border on the bottom and left, creating that 'L' */
11.
border
:
solid
#fff
;
12.
border-width
:
0
2px
2px
0
;
13.
14.
/*Position it on top of the circle*/
15.
position
:
absolute
;
16.
left
:
14px
;
17.
top
:
40%
;
18.
margin-top
:
-4px
;
19.
20.
/*Rotate the L 45 degrees to turn it into a checkmark*/
21.
-webkit-transform: rotate(
45
deg);
22.
-moz-transform: rotate(
45
deg);
23.
-o-transform: rotate(
45
deg);
24.
}
We’re finsished! Here’s what the final product looks like:
All that remains now is to integrate it into your design (changing the border colors of the before/after elements if need be)!
Some Thoughts
So that’s it. In closing I have a few thoughts about this technique:
On the downside, relying on the :nth-of-type selector is a bit risky, since a browser that recognized that selector but didn’t support CSS rounded corners and rotation would end up rendering a distorted version of the icon. Some older versions of Opera have this problem. I think that’s a pretty small issue, though, since I’m not aware of any browsers (and certainly not any with more than negligible market share) that fit that description. Also, it could be argued that it’s not worth it just to avoid using one small checkmark image. I don’t think that’s necessarily true, but it is something to consider (for reference, the css code that created the icons is .57kb when compressed).
Overall, though, I think it’s a stylish, imageless touch that could fit well into a lot of design situations. It’s a creative use of CSS3, it doesn’t require extra markup, and it degrades with near perfect gracefulness, so overall I’m proud of the idea and think it’s pretty robust.
from WebITEtc.net