好像我被卡住了。为什么下面的代码显示的是 12px 的消息,而不是 50px 的消息?如果我不允许更改 * 属性, class1 是不是有较高的如何解决它?即使 !important 也无济于事。
<html>
<head>
<style type="text/css">
*
{
font-size : 12px
}
.class1
{
font-size : 50px;
}
</style>
</head>
<body>
<div class="class1">
<span>why it is not 50px font size?</span>
</div>
</body>
</html>