汉字间字间距设置:letter-spacing
英文间字间距设置:word-spacing:
H3 { word-spacing: 1em }
参数:
・ in (英寸)
・ cm (厘米)
・ mm (毫米)
・ pt (点数)
・ pc (打字机字间距)
・ em (ems)
・ ex (x-height)
・ px (象素)
示例:<html>
<style type="text/css">
<!--
p.p1{word-spacing:5cm}
p.p2{word-spacing:5mm}
p.p3{word-spacing:5pt}
p.p4{word-spacing:5px}
p.p5{word-spacing:5in}
p.p6{word-spacing:5pc}
-->
</style>
<head>
<title>CSS</title>
</head>
<body>
<p>Welcome to Magci's BLOG!</p>
<p class="p1">Welcome to Magci's BLOG!</p>
<p class="p2">Welcome to Magci's BLOG!</p>
<p class="p3">Welcome to Magci's BLOG!</p>
<p class="p4">Welcome to Magci's BLOG!</p>
<p class="p5">Welcome to Magci's BLOG!</p>
<p class="p6">Welcome to Magci's BLOG!</p>
</body>
</html>
没有评论:
发表评论