哪位前辈给解释一下 这里的 p span 。stress的权值啊 越看越懵
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>行间距</title>
<style type="text/css">
p span{
line-height:2em;
color:red;
text-decoration:line-through;
}
#stress{
color:blue;
text-decoration:underline;
}
</style>
</head>
<body>
<p><span>菲茨杰拉德,二十世纪美国文学巨擘之一,兼具<span id="stress">作家和编剧</span>双重身份</span>。他以诗人的敏感和戏剧家的想象为"爵士乐时代"吟唱华丽挽歌,其诗人和梦想家的气质亦为那个奢靡年代的不二注解。</p>
</body>
</html>