Contents Prev Tips Next Tips
上の段落にはword-spacing: 48pxを指定し、段落内のリンクにはword-spacing: normalを指定しています。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<title>リンクのテキストを横に並べる</title>
<style type="text/css">
<!--
body { background-color: #DEE; color: black; }
h1 { font: 1.5em Verdana; }
p.links { word-spacing: 48px; }
p.links a { word-spacing: normal; font-weight: bold; }
-->
</style>
</head>
<body>
<p class="links">
<a href="../index.html">Contents</a>
<a href="tips036.html">Prev Tips</a>
<a href="tips038.html">Next Tips</a>
</p>
<hr>
<h1>Using word-spacing property</h1>
<p>上の段落にはword-spacing: 48pxを指定し、段落内のリンクにはword-spacing: normalを指定しています。</p>
</body>
</html>