Adding A Touch of Style: Getting Started
Adding A Touch of Style: Getting Started
Adding A Touch of Style: Getting Started
Getting started
Let's start with setting the color of the text and the background. You can do this by using the STYLE element to set style properties for the document's tags:
<style type="text/css"> body { color: black; background: white; } </style>
The style element is placed within the document head. Here is a template HTML file showing where the above style element fits. You can copy and paste this into your editor as a convenient way to experiment with CSS style sheets:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head>
<title> replace with your document's title </title> <style type="text/css"> body { color: black; background: white; } </style> </head> <body> replace with your document's content </body> </html>
The stuff between the <style> and </style> is written in special notation for style rules. Each rule starts with a tag name followed by a list of style properties bracketed by { and }. In this example, the rule matches the body tag. As you will see, the body tag provides the basis for setting the overall look and feel of your Web page. Each style property starts with the property's name, then a colon and lastly the value for this property. When there is more than one style property in the list, you need to use a semicolon between each of them to delimit one property from the next. In this example, there are two properties - "color" which sets the color of the text, and "background" which sets the color of the page background. I recommend always adding the semicolon even after the last property. Colors can be given as names or as numerical values, for instance rgb(255, 204, 204) which is a fleshy pink. The 3 numbers correspond to red, green and blue respectively in the range 0 to 255. You can also use a hexadecimal notation, the same color can also be written as #FFCCCC. More details on color are given in a later section. Note that the style element must be placed in the document's head along with the title element. It shouldn't be placed within the body.
The link tag should be placed within the <head> ... </head> element. Here is an HTML file with a link to an external style sheet:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title> replace with your document's title </title> <link type="text/css" rel="stylesheet" href="style.css"> </head> <body> replace with your document's content </body> </html>
The link element's rel attribute must be set to the value "stylesheet" to allow the browser to recognize that the href attribute gives the Web address (URL) for your style sheet. A simple stylesheet file might look like the following:
/* style.css - a simple style sheet */ body { margin-left: 10%; margin-right: 10%; color: black; background: white; }
Note that the same HTML file can link to an external style sheet and also include a style element for additional style settings specific to this page. If you place the link element before the style element, you can use the latter to override the style settings in the linked style sheet.
This sets both margins to 10% of the window width, and the margins will scale when you resize the browser window.
This example has three style rules. One for the body, one for h1 (used for the most important headings) and one for the rest of the headings (h2, h3, h4, h5 and h6). The margins for the headings are additive to the margins for the body. Negative values are used to move the start of the headings to the left of the margin set for the body. In the following sections, the examples of particular style rules will need to be placed within the style element in the document's head (if present) or in a linked style sheet.
The em is a very useful unit as it scales with the size of the font. One em is the height of the font. By using em's you can preserve the general look of the Web page independently of the font size. This is much safer than alternatives such as pixels or points, which can cause problems for users who need large fonts to read the text. Points are commonly used in word processing packages, e.g. 10pt text. Unfortunately the same point size is rendered differently on different browsers. What works fine for one browser will be illegible on another! Sticking with em's avoids these problems.
To specify the space above a particular heading, you should create a named style for the heading. You do this with the class attribute in the markup, e.g.
<h2 class="subsection">Getting started</h2>
The rule starts with the tag name, a dot and then the value of the class attribute. Be careful to avoid placing a space before or after the dot. If you do the rule won't work. There are other ways to set the styles for a particular element but the class attribute is the most flexible. When a heading is followed by a paragraph, the value for margin-bottom for the heading isn't added to the value for margin-top for the paragraph. Instead, the maximum of the two values is used for the spacing between the heading and paragraph. This subtlety applies to margin-top and margin-bottom regardless of which tags are involved.
First-line indent
Sometimes you may want to indent the first line of each paragraph. The following style rule emulates the traditional way paragraphs are rendered in novels:
p { text-indent: 2em; margin-top: 0; margin-bottom: 0; }
It indents the first line of each paragraph by 2 em's and suppresses the inter-paragraph spacing.
Font styles
The most common styles are to place text in italic or bold. Most browsers render the em tag in italic and the strong tag in bold. Let's assume you instead want em to appear in bold italic and strong in bold uppercase:
em { font-style: italic; font-weight: bold; } strong { text-transform: uppercase; font-weight: bold; }
If you feel so inclined, you can fold headings to lower case as follows:
h2 { text-transform: lowercase; }
body { font-family: Verdana, sans-serif; } h1,h2 { font-family: Garamond, "Times New Roman", serif; }
In this example, important headings would preferably be shown in Garamond, failing that in Times New Roman, and if that is unavailable in the browsers default serif font. Paragraph text would appear in Verdana or if that is unavailable in the browser's default sans-serif font. The legibility of different fonts generally depends more on the height of lower case letters than on the font size itself. Fonts like Verdana are much more legible than ones like "Times New Roman" and are therefore recommended for paragraph text.
The text following the heading runs the risk on some browsers of being rendered with the wrong font and margins. You are therefore advised to enclose all such text in a paragraph, e.g.
<h2>Spring in Wiltshire</h2> <p>Blossom on the trees, bird song and the sound of lambs bleating in the fields.</p>
My second rule is to set the font family for pre elements, as some browsers forget to use a fixed pitch font when you set the font size or other properties for pre.
pre { font-family: monospace; }
My third rule is to set the font family on headings, p and ul elements if you intend to set borders or backgrounds on elements such as div. This is a work-around for a bug where the browser forgets to use the inherited font family, instead switching to the default font as set by the browser preferences.
h1,h2,h3,h4,h5,p,ul { font-family: sans-serif; }
Note that without the "width" property some browsers will place the right margin too far to the right. This can then be used with markup such as:
<div class="box"> The content within this DIV element will be enclosed in a box with a thin line around it. </div>
There are a limited choice of border types: dotted, dashed, solid, double, groove, ridge, inset and outset. The border-width property sets the width. Its values include thin, medium and thick as well as a specified width e.g. 0.1em. The border-color property allows you to set the color.
A nice effect is to paint the background of the box with a solid color or with a tiled image. To do this you use the background property. You can fill the box enclosing a div as follows:
div.color { background: rgb(204,204,255); padding: 0.5em; border: none; }
Without an explicit definition for border property some browsers will only paint the background color under each character. The padding property introduces some space between the edges of the colored region and the text it contains. You can set different values for padding on the left, top, right and bottom sides with the paddingleft, padding-top, padding-right and padding-bottom properties, e.g. padding-left: 1em. Suppose you only want borders on some of the sides. You can control the border properties for each of the sides independently using the border-left, border-top, border-right and border-bottom family of properties together with the appropriate suffix: style, width or color, e.g.
p.changed { padding-left: 0.2em; border-left: solid; border-right: none; border-top: none; border-bottom: none; border-left-width: thin; border-color: red; }
which sets a red border down the left hand side only of any paragraph with the class "changed".
Setting Colors
Some examples for setting colors appeared in earlier sections. Here is a reminder:
body { color: black; background: white; } strong { color: red; }
This sets the default to black text on a white background, but renders strong elements in red. There are 16 standard color name, which are explained just below. You can also use decimal values for red, green and blue, where each value appears in the range 0 to 255, e.g. rgb(255, 0, 0) is the same as red. You can also used hex color values which start with the '#' characted followed by six hexadecimal digits. A two-way converter is included below which allows you to convert from RGB to hex color values.
Sometimes you may want to show hypertext links without them being underlined. You can do this by setting the text-decoration property to none, for example:
a.plain { text-decoration: none; }
Most people when they see underlined text on a Web page, will expect it to be part of a hypertext link. As a result, you are advised to leave underlining on for hypertext links. A similar argument applies to the link colors, most people will interpret underlined blue text as hypertext links. You are advised to leave link colors alone, except when the color of the background would otherwise make the text hard to read.
Color Blindness
When using color, remember that 5 to 10% of men have some form of color blindness. This can cause difficulties distinguishing between red and green, or between yellow and blue. In rare cases, there is an inability to perceive any colors at all. You are recommended to avoid foreground/background color combinations that would make the text hard to read for people with color blindness.
Named colors
The standard set of color names is: aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow. These 16 colors are defined in HTML 3.2 and 4.01 and correspond to the basic VGA set on PCs. Most browsers accept a wider set of color names but use of these is not recommended. Color names and sRGB values black = "#000000" green = "#008000"
silver = "#C0C0C0"
lime = "#00FF00"
gray = "#808080"
olive = "#808000"
white = "#FFFFFF"
yellow = "#FFFF00"
maroon = "#800000"
navy = "#000080"
red = "#FF0000"
blue = "#0000FF"
purple = "#800080"
teal = "#008080"
fuchsia = "#FF00FF" Thus, the color value "#800080" is the same as "purple".
aqua = "#00FFFF"
Enter RGB or Hex value and press appropriate button to convert red: green: blue:
255
255
255
Bottom of Form
Here is a table of the browser safe colors and their hex values. My thanks to Bob Stein for this arrangement. CC FFF 999 FFC FF9 C 666 333 000 FF 99 C0 90 CC 666 333 000 F 9 0 0 C FF 99C CC FFC C C0 9 C3 C6 0 900 3 6 CC CC CC CC 333 FFF F F 666 999 C 9 30 F0 F0 F3 600 900 C0 93 0 0 0 3 0 3 CC 99 CC 99F FFF 996 F C 666 999 C F0 F3 60 F6 C3 633 933 C3 0 3 0 6 3 3 66 CC 66F 99F FFF 996 C 669 999 C F0 F6 F6 63 C3 900 966 C6 0 6 6 3 3 6 CC CC 33F 66F 339 66C 99F FFF C 9 F0 F3 90 C0 F3 F9 C9 96 0 3 0 0 3 9 9 6 CC FF 00C 33C 336 99C FFF 669 F C C0 C0 60 C6 FC 933 F9 C9 0 0 0 6 C 9 9 00 CC 33C 66C 33F 66F 99F F F C3 C6 F3 F6 F9 F0 FC 3 6 3 6 9 0 C 006 009 99C 336 339 669 60 90 C9 633 933 966 0 0 9 FF6 FF3 60 300 0 CC FF9 FF6 3 96 633 30 6 0 CC CC 660 990 6 330 0 00 00 63 000 00 0 0 3 0 CC 993 993 FF3 663 3 30 33 33 333 33 0 3 3 3 CC 663 FF6 990 996 6 30 66 03 666 66 0 6 3 6 CC CC CC FF9 FF3 6 0 9 99 39 60 06 999 9 9 0 6 CC FF9 FFC FF9 993 6 93 CC 9C 36 69 3 C C 6 9 CC 996 993 9 69 39 9C 9 9 C CC 0 03 3 FF0 FF3 FF0 00 36 03 0 6 3 CC 3 36 6 CC 3 39 9 FF6 FF0 69 06 9 6 FF6 FF0 6C 09 C 9
CC FFC FF9 FF6 FF3 FF0 6 CF 9F 6F 3F 0F 6C F F F F F C CC 99 CC CC 003 00C 006 66C 99F 339 996 663 330 990 339 F C C 9 30 C3 63 C9 FC 9F 6C 39 06 0C 966 FF CF CF 9F 0 3 3 9 C F C 9 6 C F F F F
CC 00F 33F 009 00C 33F 99F 99C 006 669 999 999 993 660 660 3 F3 F6 93 C6 F9 FF CC 6C 9C 9F 9C 3F 0C 09 3F 3 6 3 6 9 F C C C F C F C 9 F 33 CC 00F 66F 66F 66C 003 336 666 666 666 330 993 C 009 669 6 F6 F9 FF CC 36 69 6F 6C 69 09 3C C6 966 999 6F 6 9 F C 6 9 F C 9 9 C 6 F 33 00F 66F 33F 33C 006 003 333 333 333 333 663 996 C 339 336 F9 FC FF CC 69 39 3F 3C 39 36 3C 6F C9 999 666 9 C F C 9 9 F C 9 6 C F 9 00 00F 33F 00C 339 336 000 000 000 000 000 663 F 009 006 003 FC FC CC 9C 6C 0F 0C 09 06 03 3F FF 999 666 333 C C C C C F C 9 6 3 F F 66 00C 009 33C 669 336 003 C C9 9C CF 9F 6F 3C CF 9 C F F F C F 00C 009 006 003 CF 9F 6F 3F F F F F
Color swatches for the browser safe palette are available free for many popular graphics packages, from www.visibone.com.
The BODY element should be placed before the visible content of the Web page, e.g. before the first heading. You can also control the color of hypertext links. There are three attributes for this:
link for unvisited links vlink for visited links alink for the color used when you click the link
You can also get the browser to tile the page background with an image using the background attribute to specify the Web address for the image, e.g.
<body bgcolor="white" background="texture.jpeg" text="black" link="navy" vlink="maroon" alink="red">
It is a good idea to specify a background color using the bgcolor attribute in case the browser is unable to render the image. You should check that the colors you have chosen don't cause legibility problems. As an extreme case consider the following:
<body bgcolor="black">
Most browsers will render text in black by default. The end result is that the page will be shown with black text on a black background! Lots of people suffer from one form of color blindness or another, for example olive green may appear brown to some people. A separate problem appears when you try to print the Web page. Many browsers will ignore the background color, but will obey the text color. Setting the text to white will often result in a blank page when printed, so the following is not recommended:
<body bgcolor="black" text="white">
You can also use the bgcolor attribute on table cells, e.g.
<table border="0" cellpadding="5"> <tr> <td bgcolor="yellow">colored table cell</td> </tr> </table>
Tables can be used for a variety of layout effects and have been widely exploited for this. In the future this role is likely to be supplanted by style sheets, which make it practical to achieve precise layout with less effort.
The face attribute is used to set the font. It takes a list of fonts in preference order, e.g.
<font face="Garamond, Times New Roman">some text ...</font>
The size attribute can be used to select the font size as a number from 1 to 6. If you place a - or + sign before the number it is interpreted as a relative value. Use size="+1" when you want to use the next larger font size and size="-1" when you want to use the next smaller font size, e.g.
<font size="+1" color="maroon" face="Garamond, Times New Roman">some text ...</font>
There are a couple of things you should avoid: Don't choose color combinations that make text hard to read for people who are color blind. Don't use font to make regular text into headings, which should always be marked up using the h1 to h6 tags as appropriate to the importance of the heading.
4", published 1998 by Addison Wesley. For a more detailed explanation of CSS, "Cascading Style Sheets" by Hkon Wium Lie and Bert Bos, pub. 2005 by Addison Wesley, which provides an in-depth look at CSS as seen by the architects of CSS themselves. Some errata are also available for this book. I plan to extend this guide with additional pages explaining CSS positioning, printing and aural style sheets. Best of luck and get writing!
Copyright 1994-2003 W3C (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark, document use and software licensing rules apply. Your interactions with this site are in accordance with our public and Member privacy statements.