<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
 <title>Kombination von Klassen-Selektoren - Cascading Style Sheets - Workshop Internet-Pr&auml;senz</title>

 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <meta http-equiv="Content-Language" content="DE" />
 <meta http-equiv="Content-Style-Type" content="text/css" />

 <meta name="description"
  content="&Uuml;bung Cascading Style Sheets. Kombination von Klassen-Selektoren." />
 <meta name="keywords" content="HTML, Cascading Style Sheets" />
 <meta name="author" content="Roland Unger" />

 <style type="text/css">
 <!--

  p {
     font-size: 1em;
     color: #000080; /* dunkelblau */
  }

  .rot {
     color: #ff0000; /* rot */
  }

  .kursiv {
     font-style: italic;
  }

 -->
 </style>
</head>

<body>

<h1>Workshop Internet-Präsenz</h1>

<h2>Kombination von Klassen-Selektoren - Cascading Style Sheets</h2>

<p>Sie können mehrere Werte in einer Klassendefinition
vereinbaren und somit unterschiedliche Definitionen
verbinden.</p>

<p class="rot">Dieser Absatz ist rot geschrieben.</p>

<p class="kursiv">Dieser Absatz ist kursiv geschrieben.</p>

<p class="kursiv rot">Dieser Absatz ist rot und kursiv
geschrieben.</p>

</body>
</html>