<!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="cs" lang="cs">
<head>
  <meta http-equiv="content-type" content="text/html; charset=windows-1250" />
  <title>Kurzva, tunost i podtren pomoc CSS - dekorace textu</title>
  <style type="text/css">
    body {
      font-family: Arial, Verdana, sans-serif;
      font-size: small;
    }
    h1, h2 {
      font-family: Georgia, "Times New Roman", serif;
    }
    h1 {
      font-size: 200%;
    }
    h2 {
      font-size: 140%;
    }
    p {
      font-size: 90%;
    }
    p.podtrzeni {
      text-decoration: underline;    /* podtren */
    }
    p.nad-textem {
      text-decoration: overline;     /* linka nad textem */
    }
    p.preskrtnuti {
      text-decoration: line-through; /* pekrtnut */
    }
  </style>  
</head>
<body>
  <h1>Vlastnost text-decoration</h1>
  <p class="podtrzeni">Podtren text s pouitm hodnoty <code>underline</code></p>
  <p class="nad-textem">Text s linkou nad textem po pouit hodnoty <code>overline</code></p>
  <p class="preskrtnuti">Pekrtnut text s pouitm hodnoty <code>line-through</code></p>
</body>
</html>
