Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 iframe 中的样式有疑问
问题我只能访问 css 文件
我可以说以下
<html> <body> ... <iframe src="abc" /> ... </body> </html>
无论如何我可以将第一个 html 的宽度更改为 960px,另一个更改为 100%,因为如果我更改 css 中的 html 属性,它将影响它们两者
我试过了first-child,iframe html {}但没有用
first-child
iframe html {}
感谢您的帮助
加载到 iframe 中的文档是一个独立的文档。CSS 不会通过 iframe 级联到其中。您可以使用它们自己的样式表独立地设置两个页面的样式。