【发布时间】:2020-12-31 05:15:10
【问题描述】:
我已经编写了这个 html 脚本来在 iframe 中显示维基百科,但我想更改它的背景颜色,下面是我尝试过的代码 sn-p。但它不起作用。
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: blue !important;
/* Adding !important will give this rule more precedence over inline style */
}
</style>
</head>
<body>
<iframe style="background-color:#fc3 !important;" src="https://www.wikipedia.org/" width="100%" height="450px" >
</iframe>
</body>
</html>
【问题讨论】:
-
你写错了。在 iframe 中查看背景颜色
标签: javascript html css iframe styles