word-spacing与letter-spacing的区别

word-spacing设置字与字之间的间距,letter-spacing设置字母与字母之间的间距

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>word-spacing与letter-spacing的区别</title>
</head>

<body>
<p style="letter-spacing:2em;">hello world</p><br />
<p style="word-spacing:2em;">hello world</p><br />
<p style="letter-spacing:2em;">中国 人民</p><br />
<p style="word-spacing:2em;">中国 人民</p><br />
</body>
</html>

参考:http://zhidao.baidu.com/question/401930240.html

你可能感兴趣的:(区别,letter-spacing,word-spacing)