CSS - właściwości word-spacing


word-spacing

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">
</style>
</head>
<body>

<b>odległości pomiędzy słowami</b><br />
word-spacing: odległość<br />

<br>
<span style="word-spacing: 0.25em;">word-spacing: 0.25em</span><br />
<span style="word-spacing: 0.5em;">word-spacing: 0.5em</span><br />
<span style="word-spacing: 1em;">word-spacing: 1em</span><br />
<span style="word-spacing: 2em;">word-spacing: 2em</span><br />
<span style="word-spacing: 4em;">word-spacing: 4em</span><br />

</body>
</html>