CSS - właściwości tab-size
tab-size
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 {
tab-size: 7;
}
.two {
tab-size: 25px;
}
.three {
tab-size: integer;
}
</style>
</head>
<body>
<pre class="one"> Koko koko euro spoko.</pre>
<pre class="two"> Koko koko euro spoko.</pre>
<pre class="three"> Koko koko euro spoko.</pre>
</body>
</html>
|
|