层叠性问题
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>字间距</title>
<style type="text/css">
h1{letter-spacing:20px;}
h1{word-spacing:50px;}
</style>
</head>
<body>
<h1>hello world!你好!</h1>
</body>
</html>
我同时对h1标签应用letter-spacing和word-spacing样式,且它们的权值相同,根据层叠关系不是应该显示后者的效果么?为什么还是只显示letter-spacing的效果,而且在分号前加个!important也不管用,求解