Einzelnen Beitrag anzeigen
  #3 (permalink)  
Alt 24.05.2007, 13:57
andip andip ist offline
purist
XHTMLforum-Mitglied
 
Registriert seit: 02.08.2005
Ort: luzern (schweiz)
Beiträge: 294
andip wird schon bald berühmt werden
Standard

z.b. so:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

	<title>liste</title>
	
	<style type="text/css" media="screen">
		ol li {
			color: red;
		}
		
		ol li span {
			color: black;
		}
	</style>
	
</head>

<body>

	<ol>
		<li><span>Google</span></li>
		<li><span>AltaVista</span></li>
		<li><span>Fireball</span></li>
	</ol>
	
</body>
</html>
nachschlag: mist, zu langsam
Mit Zitat antworten