【发布时间】:2020-01-05 04:44:30
【问题描述】:
我得到了只能像这样运行html(不是javascript)的页面(可以控制内容):
<style>
h1 { color:red }
</style>
<object data=something.html ></object>
在something.html中,它包含:
<h1>
simple example
</h1>
在这种情况下 css 不起作用,我希望 simple example 是红色的,它仍然是黑色的。我的 css 是否有可能影响呈现的 html 源? (可以用任意标签替换object标签)
【问题讨论】:
-
尝试添加
h1 { color: red !important;}