[新着] Webテンプレートを仮オープンしました
word-spacing は、単語と単語の間隔を指定するプロパティです。
p {
word-spacing: 0.5em;
}
| word-spacing | 間隔を指定します |
|---|
間隔の指定は、数値+単位(px、em、他)で指定します。
※デフォルトは normal(標準)です。(例:word-spacing: normal)
<html>
<head>
<title>TAG index Webサイト</title>
<style type="text/css">
<!--
#example1 { word-spacing: 0.3em; }
#example2 { word-spacing: 1em; }
-->
</style>
</head>
<body>
<p>Welcome to My Web Site</p>
<p id="example1">Welcome to My Web Site</p>
<p id="example2">Welcome to My Web Site</p>
</body>
</html>
▼これをブラウザで見ると次のように表示されます
Welcome to My Web Site
Welcome to My Web Site
Welcome to My Web Site