Forum Moderators: not2easy
Conforming user agents may consider the value of the 'word-spacing' property to be 'normal'.
<html>
<head>
<style type = "text/css">
.emstretch {word-spacing: 1em;}
.pixstretch {word-spacing: 24px;}
</style>
</head>
<body>
<p>Normal text.</p>
<p class = "emstretch">Stretched-out text in ems.</p>
<p class = "pixstretch">Stretched-out text in pixels.</p>
</body>
</html>