There is a tool that came to make our lives as progressive web designers a bit easier: Modernizr. In this short tutorial, learn how to apply this handy script to maximum effect on your sites. An overview Although CSS3’s use has been increasing among web designers, browser support for some of its features is still…… Continue reading How to use Modernizr
Category: CSS
Floated lists with CSS3 and jQuery
We should all be using advanced CSS selectors by now—they make our lifes so much easier! In this quick tutorial, I’m going to explain how you can have a nicely floated list of items. We will use jQuery to make sure IE understands it too. The markup Let’s start with a very clean semantic markup,…… Continue reading Floated lists with CSS3 and jQuery
Belgian beer types, or how to style a definition list the CSS3 way
Definition lists are an often forgotten HTML element, but they can be used in a wide variety of ways, and are actually the most semantically accurate element in many cases. So let’s see how we can mix up beer, HTML and CSS3, while explaining the purpose of the definition list element. When to use a…… Continue reading Belgian beer types, or how to style a definition list the CSS3 way
Styling a poem with advanced CSS selectors
CSS3 selectors offer endless possibilities of targeting specific HTML elements without the need of extra markup (which was already possible with previous versions of CSS). This time, I’m going to style the popular nursery rhyme “Twinkle Twinkle Little Star” using advanced CSS selectors, all in less than 5 minutes! Coding a poem There isn’t a…… Continue reading Styling a poem with advanced CSS selectors
An ode to border-radius
Ah! Border-radius: web designer’s sweetheart and (sadly) the one that IE8 forgot, destroying many a web designer’s dreams. In this post I’m going to explain how it works, what are some of the cross-browser alternatives, and showcase some websites that took a step ahead and implemented it. What is border-radius? Border-radius is a CSS3 property…… Continue reading An ode to border-radius
Adding style with CSS: beautiful text
This may seem like a no-brainer, but adding style to your HTML is not just about adding pretty backgrounds and borders. The foundation of a good looking site has to be, with a couple other things, the way text is set. So let’s see how, with just a few lines of very simple CSS, we…… Continue reading Adding style with CSS: beautiful text
A tidier Internet Explorer stylesheet
Until recently, I used to separate my IE only stylesheets as ie6.css and ie7.css (and sometimes even ie.css), but lately I’ve been thinking a lot about how inefficient and long winded this process really is. It has made me realize that I could just as easily use IE CSS filters to my advantage, and merge…… Continue reading A tidier Internet Explorer stylesheet
Adding style with CSS: a beautiful table
I’ve always enjoyed styling tables. I’m a perfectionist when it comes to it and I just love the process of adding little bits of love and care to completely transform a dull and drab table into something fun, lively and pleasant to look at. This article will go into one of the diverse ways in…… Continue reading Adding style with CSS: a beautiful table
Adding style with CSS: a beautiful form
Forms don’t have to be ugly and boring, and certainly don’t have to be inside tables to look nice and aligned. In this post we’ll take look at how to style a beautiful form using the power of semantic HTML and CSS. The beginning: HTML markup Let’s begin by creating a simple feedback form. Here’s…… Continue reading Adding style with CSS: a beautiful form
How to start a CSS file
If you’re just taking your first steps into learning CSS, the moment where you need to actually start writing some code may be a bit daunting. You’ll probably end up asking yourself: Where do I start? What should be the first thing on my stylesheet? How should I organize my code? Are there any conventions?…… Continue reading How to start a CSS file