1. Web Design
  2. HTML/CSS

Design a Prettier Web Form with CSS 3

Scroll to top
This post is part of a series called CSS3 Mastery.

Thanks to advanced CSS properties, such as gradients and shadows, it’s now quite easy to turn a dull web form into something beautiful – with minimal effort. I’ll show you how in today’s tutorial!

This tutorial includes a screencast available to Tuts+ Premium members.

Subtle background gradients give depth to the fields while shadows lift them from the page. Even more impressive is that this is done without any images at all.

By following this tutorial you will not only end up with a lightweight and beautiful form, you’ll also learn and understand new CSS3 techniques, such as box-shadow, gradients, opaque colors, and rounded corners.


CSS3?

CSS3 is the next generation of CSS that is currently under development, but that doesn’t stop browsers from already implementing many of the prominent features.

Opera has greater levels of support for CSS3 (except background gradients) in their next version (10.50 Beta).

Internet Explorer has also stated that they will have improved CSS3 support with version 9; however, only time will tell how true this is.

The things you can do with CSS3 (shadows, gradients, round corners, animations, etc) all serve a purpose of creating beautiful effects without having to integrate images or scripts, resulting in quicker loading times.


Step 1: The HTML

Before we begin styling we need something to style, so here is the form.

1
  
2
<form class="form"> 
3
  
4
	<p class="name"> 
5
		<input type="text" name="name" id="name" /> 
6
		<label for="name">Name</label> 
7
	</p> 
8
  
9
	<p class="email"> 
10
		<input type="text" name="email" id="email" /> 
11
		<label for="email">E-mail</label> 
12
	</p> 
13
  
14
	<p class="web"> 
15
		<input type="text" name="web" id="web" /> 
16
		<label for="web">Website</label> 
17
	</p> 
18
  
19
	<p class="text"> 
20
		<textarea name="text"></textarea> 
21
	</p> 
22
  
23
	<p class="submit"> 
24
		<input type="submit" value="Send" /> 
25
	</p> 
26
  
27
</form>

Each field is inside a paragraph with its own class, and the three first fields have a label explaining their use.

How does it look without any styling?

Functional, but dull. Let’s start pimping out this form.


Full Screencast



Step 2: Basic Styling

Before we dive into the CSS3 techniques we need to create a basic layout for browsers that don’t yet support CSS3.

1
  
2
input, textarea { 
3
	padding: 9px; 
4
	border: solid 1px #E5E5E5; 
5
	outline: 0; 
6
	font: normal 13px/100% Verdana, Tahoma, sans-serif; 
7
	width: 200px; 
8
	background: #FFFFFF; 
9
	} 
10
  
11
textarea { 
12
	width: 400px; 
13
	max-width: 400px; 
14
	height: 150px; 
15
	line-height: 150%; 
16
	} 
17
  
18
input:hover, textarea:hover, 
19
input:focus, textarea:focus { 
20
	border-color: #C9C9C9; 
21
	} 
22
  
23
.form label { 
24
	margin-left: 10px; 
25
	color: #999999; 
26
	} 
27
  
28
.submit input { 
29
	width: auto; 
30
	padding: 9px 15px; 
31
	background: #617798; 
32
	border: 0; 
33
	font-size: 14px; 
34
	color: #FFFFFF; 
35
	}

How does our effort look so far?


Not too bad. Now, let’s begin our enhancements with the more advanced CSS3.


Step 3: Box-shadow

Box-shadow does exactly what it sounds like: creates a shadow around a box.

The syntax for box-shadow is fairly simple:

1
  
2
box-shadow: <color> <horizontal offset> <vertical offset> <blur>;

Horizontal offset is the placement of the shadow from left to right. If you set it to “2px” the shadow will be 2 pixels to the right. Vertical offset is the same but up/down.

Blur is simply the amount of blur the shadow will have, where 0 is minimum.

This is how our box-shadow will look like:

1
  
2
input, textarea { 
3
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px; 
4
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px; 
5
	-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px; 
6
	}

Here we have three lines that look similar.

  • box-shadow is pure CSS3 and so far only used in Opera.
  • -webkit-box-shadow is for browsers using the Webkit engine, like Chrome and Safari.
  • -moz-box-shadow is for browsers using Mozilla’s Gecko engine, like Firefox, Camino, Flock, and SeaMonkey.

Until CSS3 becomes the standard, you have to use all three methods. Internet Explorer has their own weird way of doing things, and although it’s capable of making a shadow it will not look the way we want it. 3

You might notice that there was no normal RGB color used, this is because we’re using two CSS3 techniques on the same line: box-shadow and rgba.

RGBA (Red Green Blue Alpha) is, simply put, color with opacity.

The syntax for rgba is this:

1
  
2
rgba(<red>,<green>,<blue>,<opacity>);

It’s perfectly fine to use a light grey for the shadow’s color, but if you are using any other background than white it will look strange. An opaque black on the other hand will work well no matter what background.

So our box-shadow is black with 10% (0.1) opacity, no horizontal and vertical offset, and with a blur of 8 pixels. It will look like this:


The keyword here is subtlety. If we apply too much shadow, it will look ugly; if we apply too little, it won’t have an effect. Basically, we don’t want anyone to notice the shadow, but still have it lift the fields from the page.


Step 4: Background Gradient

While the box-shadow syntax is easy to grasp, gradients are trickier. With CSS3 gradients, you can create some amazing shapes — from dart boards to rainbows — so as you can imagine it has a more complex syntax. Thankfully, we don’t need to code a rainbow today; we just need a straight linear gradient.

Syntax for Webkit:

1
  
2
-webkit-gradient( linear, <start>, <end>, from(<color>), to(<color>) )

Syntax for Gecko:


1
  
2
-moz-linear-gradient(<start> <angle>, <color>, <color>)

As you can see, the methods are quite different, so this will require some explaining.

Webkit gradients require a start point (X and Y), an end point (X and Y), a from-color, and a to-color. The angle is determined by where start and end are, and the gradient will be colored with the “from(color)” fading to “to(color)”.

Gecko gradients, on the other hand, require only a start point (Y), and at least two colors. If you want a gradient going from top to bottom (90deg) you don’t need to assign an angle.

So to get a simple linear gradient from top to bottom – black to white – we would do like this:

1
  
2
background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#FFFFFF)); 
3
background: -moz-linear-gradient(top, #000000, #FFFFFF);

And it would appear like this:


(I will continue to use the black color for demonstration; at the end, I’ll switch to the real color we will be using for the form.)

Now that we have the basics out of the way, we can start making the form look how we want. The first thing we want to do is limit the height of the gradient so that it looks the same for both input fields and textarea; otherwise the gradient would fill the entire height, like this:


This is how we limit the background gradient to 25px in Webkit and Firefox:

1
  
2
input, textarea { 
3
	background: -webkit-gradient(linear, left top, left 25, from(#000000), to(#FFFFFF)); 
4
	background: -moz-linear-gradient(top, #000000, #FFFFFF 25px); 
5
	}

For Webkit, instead of setting the end point to “left bottom,” we set it to “left 25″, indicating it will end 25 pixels from the top.

For Gecko, we do the same thing by simply adding a “25px” value to the end color.

And the result is:


The second thing we want to do is create a thin white line at the top of the gradient, to give the subtle visual impression that the field is raised. How important can a single pixel be? Take a look at this article: Adding Depth with Pixel Perfect Line Work.

To create this, we’ll need three points in the gradient. In the previous example, our gradient had two points: top and bottom (black→white). Here, we’ll add an additional point in between them (white→black→white).

To illustrate:


How do we do this?

1
  
2
input, textarea { 
3
	background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #000000), to(#FFFFFF)); 
4
	background: -moz-linear-gradient(top, #FFFFFF, #000000 1px, #FFFFFF 25px); 
5
	}

In Webkit we use the color-stop function, but unfortunately it doesn’t support values in pixels, only percentage. But thanks to paying attention to math in school we figure that 4% of 25px is 1px.

For Gecko, we simply add a third color between the first two and give it a “1px” value, indicating that it should end 1 pixel from the top.

The thin white line:


Now, let’s change the black color (#000000) to a more fitting light grey (#EEEEEE):


Just some small detail work remains.

First, we’ll create a darker shadow for the fields when the user hovers or selects it:

1
  
2
input:hover, textarea:hover, 
3
input:focus, textarea:focus { 
4
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px; 
5
	}

It’s just an increase from 10% to 15%, but what we are after is, once again, subtlety.


The last thing we do is create some rounded corners for the button3 to further make it stand out from the other elements:

1
  
2
.submit input { 
3
	-webkit-border-radius: 5px; 
4
	-moz-border-radius: 5px; 
5
	}

The value is the radius the corners will be rounded by. The standard border-radius is intentionally left out since Opera seems to have some problem with it.

Result:



Step 5: The Other Browsers

Now we just need to take care of the browsers that don’t support CSS3 yet (IE), or only partly does (Opera).

We want the different versions (CSS3 and the normal) to look as similar as possible, and the simplest thing is to go back to the old way: images.

Simply take a screenshot of the beautiful CSS3 form and save a small portion of the gradient as an image.


Next, use it in the input and textarea as a background. As long as the CSS3 gradients comes after the background image, browsers that support CSS3 will ignore the image.

1
  
2
input, textarea { 
3
	background: #FFFFFF url('bg_form.png') left top repeat-x; 
4
	}

And now we are done! Enjoy your form and I hope you have learned something.


Final Preview

Chrome (4.0), Firefox (3.6), Safari (4.0):


Opera (10.50b):


Internet Explorer (8):



Full CSS

1
  
2
input, textarea { 
3
	padding: 9px; 
4
	border: solid 1px #E5E5E5; 
5
	outline: 0; 
6
	font: normal 13px/100% Verdana, Tahoma, sans-serif; 
7
	width: 200px; 
8
	background: #FFFFFF url('bg_form.png') left top repeat-x; 
9
	background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF)); 
10
	background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px); 
11
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px; 
12
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px; 
13
	-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px; 
14
	} 
15
  
16
textarea { 
17
	width: 400px; 
18
	max-width: 400px; 
19
	height: 150px; 
20
	line-height: 150%; 
21
	} 
22
  
23
input:hover, textarea:hover, 
24
input:focus, textarea:focus { 
25
	border-color: #C9C9C9; 
26
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px; 
27
	} 
28
  
29
.form label { 
30
	margin-left: 10px; 
31
	color: #999999; 
32
	} 
33
  
34
.submit input { 
35
	width: auto; 
36
	padding: 9px 15px; 
37
	background: #617798; 
38
	border: 0; 
39
	font-size: 14px; 
40
	color: #FFFFFF; 
41
	-moz-border-radius: 5px; 
42
	-webkit-border-radius: 5px; 
43
	}

Conclusion

That’s all there is to it! With minimal effort, and the power of CSS 3, we’ve turned a bland and ordinary form into something beautiful. Thanks so much for reading, and feel free to ask any questions that you might have below.

Did you find this post useful?
Want a weekly email summary?
Subscribe below and we’ll send you a weekly email summary of all new Web Design tutorials. Never miss out on learning about the next big thing.
Looking for something to help kick start your next project?
Envato Market has a range of items for sale to help get you started.