CSS - właściwości text-decoration-style
text-decoration-style
kod |
wynik kodu |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-2">
<meta http-equiv="Content-Language" content="pl">
<title>webatak.pl - CSS - text</title>
<link rel="Stylesheet" type="text/css" href="style.css" />
<style type="text/css">
.one {
text-decoration: underline;
text-decoration-style: solid;
}
.two {
text-decoration: underline;
text-decoration-style: double;
}
.three {
text-decoration: underline;
text-decoration-style: dotted;
}
.four {
text-decoration: underline;
text-decoration-style: dashed;
}
.five {
text-decoration: underline;
text-decoration-style: wavy;
}
.six {
text-decoration: underline overline;
text-decoration-style: dotted;
text-decoration-color: green;
}
</style>
</head>
<body>
<h2 class="one">Koko koko euro spoko.</h2>
<h2 class="two">Koko koko euro spoko.</h2>
<h2 class="three">Koko koko euro spoko.</h2>
<h2 class="four">Koko koko euro spoko.</h2>
<h2 class="five">Koko koko euro spoko.</h2>
<h2 class="six">Koko koko euro spoko.</h2>
</body>
</html>
|
|