CSS - właściwości text-decoration-line
text-decoration-line
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-line: none;
}
.two {
text-decoration-line: underline;
}
.three {
text-decoration-line: overline;
}
.four {
text-decoration-line: line-through;
}
.five {
text-decoration-line: underline overline;
}
</style>
</head>
<body>
<a href="CSS_dimension.html">wymiary</a><br />
<a href="CSS_dimension.html" class="one">wymiary</a><br />
<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>
</body>
</html>
|
|