This list includes some very common CSS properties. It is not intended to be complete. In many cases the list of possible values is also incomplete. Some properties can be used with additional tags.
font-family: "Helvetica", "Arial", sans-serifThis paragraph actually uses this font-family. In this example, the browser would attempt to use a "Helvetica" family-font first. If it wasn't available, it would try to use "Arial". If neither were available it would use "sans-serif", a generic font available in every browser. One should always include a generic-family font as the last font because a viewer's computer may not have a particular family-name font available. Note: "Times New Roman" and "Arial" are commonly found on Windows computers while "Times" and "Helvetica" are common on Macs. It generally recommended that if you use a family-name, you specify a font that is commonly found on Macs, one commonly found on Windows computers, and a third generic font just in case neither family font is available on the user's computer. Common values:
width: 500px
width: 40%
Ordered lists | Unordered lists |
---|---|
decimal, lower-roman, upper-roman, lower-alpha | none, disk, circle, square |
Used to make the text wrap around the image or division
aTable.center { aDiv.center { margin-left: auto; margin-left: auto; margin-right: auto; margin-right: auto; } }
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.
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.
When formatting tables, you typically define CSS for the <table>, <tr>, <th>, <td>, and <caption> tags as needed. The following properties discussed above may be useful: border, width, height, text-align, padding, background-color, color, margin-left: auto, and margin-right: auto, for example, are often useful. Important Some browsers require using HTML5 and start with the tag <!DOCTYPE html>. Some special properties:
Tag | Centered aqua tables | This table |
---|---|---|
<table> | border-collapse: collapse; border: 1px solid black; background-color: aqua; margin-left: auto; margin-right: auto; |
border: 1px solid red; width: 600px |
<tr> | (white rows) color: black; background-color: white (light gray rows) color: blue; background-color: #CCCCCC |
|
<th> | (same as for <td>) | color: white; background-color: #606060 |
<td> | border: 1px solid black; padding: 5px | border: 1px solid red; |
<caption> | caption-side: bottom |
Unit | Description | Unit | Description | Unit | Description | ||
---|---|---|---|---|---|---|---|
% | percentage | in | inch | cm | centimeter | ||
mm | millimeter | em | current font size | ex | height of x | ||
pt | point | pc | pica (12 pts) | px | pixel |
a:link {color:green} a:visited {color:maroon} a:hover {color:black} a:active {color:blue}The "with style" version of this page uses the above statements. See the links at the end of this page to see how they work.
<style type="text/css"> body {background-color: #ffffcc; ... } p.center {text-align:center} .special {color: blue} </style> ... <p class="special">
<body style="background-color: #ffffcc"; ... > <p style="text-align:center">
<link rel="stylesheet" type="text/css" href="filename.css">
One can specify different style sheets for different types of devices:
<link rel="stylesheet" type="text/css" media="all" href="filename_a.css"> <link rel="stylesheet" type="text/css" media="handheld" href="filename_h.css"> <link rel="stylesheet" type="text/css" media="print" href="filename_p.css"> <link rel="stylesheet" type="text/css" media="screen" href="filename_s.css">The first stylesheet apples to all devices. The second to handheld devices (like smart phones). The third applies when the page is printed, and the last applies to screens (computer monitors). There are several additional media types. One specify additional qualifiers:
<link rel="stylesheet" type="text/css" media="handheld, screen and (max-width: 500px)" href="filename_n.css">
says to apply the specified style sheet to handheld devices or to screens that are 500 pixels or less wide. (Use "," for "or".) Do an internet search for "CSS media" for additional details.
This page uses the above 5 stylesheet link statements using the style sheets CommonCSS_all.css, CommonCSS_handheld.css, CommonCSS_print.css, CommonCSS_screen.css, and CommonCSS_narrow.css. The first contains all the common CSS. The second changes the <pre> font to green, the third changes that color to red (check with print preview), the fourth changes that font color to blue, while the last one change the background color for <pre> to light red.
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 Sept. 12, 2016.