Update 12

Some common CSS attributes for HTML and XHTML files

This list includes some very common CSS properties. It is not intended to be complete. In many cases the list of posible values is also incomplete. Some properties can be used with additional tags.

Commonly used with body, div, and table tags

Commonly used with p, span, div, h1...h6, body, and table tags

Commonly used with ordered and unordered lists

Commonly used with img and div tags

Used to make the text wrap around the image or division

Centering items

Box properties: margins, padding and borders

These apply to all elements and are commonly used with div (divisions), paragraphs, lists and headers, for example. They apply to the "box" containing the element.

CSS used for this div
float: right;
background-color: #CCCCCC;
margin: 20px;
padding: 10px;
border-width: 10px;
border-style: outset;
border-color: red

widthValues number values for margin, padding and border-width are commonly set in px (pixels), in (inches), cm (centimeters) or percents. The above listing is short. One can control the top, right side, bottom, and left side of the box independently using -top, -right, -bottom, -left following the words margin, padding, or border.

CSS measurement units

UnitDescription UnitDescription  UnitDescription
%percentageininchcmcentimeter
mmmillimeteremcurrent font sizeexheight of x
ptpointpcpica (12 pts)pxpixel

Changing hyperlink colors


Three ways to use CSS

  1. style tag: Example:
    <style  type="text/css">
        body {background-color: #ffffcc;
            ... }
        p.center {text-align:center}
        .special {color: blue}
    </style>
    ...
    <p class="special">   
  2. in-line: Example:
    <body style="background-color: #ffffcc"; ... >
    <p style="text-align:center">
  3. external: Example:
    <link rel="stylesheet" type="text/css" href="filename.css"> 

View this page using CSS
View this page without any CSS
You may want to view the source file to see the CSS used in this file.

These files are exactly the same except the <style> tag in the head section was removed in the "without" page.


Maintained by brinkje@plu.edu
Updated May 15, 2013

Valid HTML 4.01! Valid CSS!