書式
 letter-spacing:間隔
			
					
対象
全ての要素
				
			
					
継承
する
				
			
					
初期値
normal
				
			
					
バージョン
					CSS Level 1
				
			
					
対応ブラウザ
					Win IE4.0以降, Mac IE5.0, NN6.0以降, Firefox, Opera 6, Safari
				
			
				
解説
				文字の間隔を指定します。
			
			
					サンプルコード
					<html>
						<head>
						<meta http-equiv="content-type" content="text/html;charset=utf-8">
						<title>Sample</title>
						<style type="text/css"><!--
						body { margin:0px; }
						div { position:absolute; top:10;left:10px;
						 letter-spacing:2em;
						}
						--></style>
						</head>
						<body>
												<div>サンプルテキストです。<br>Sample Text</div>
						</body>
						</html>