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.
我想要一个不同的 CSS 属性(溢出),这取决于页面是显示在(Facebook)iframe 内还是单独显示。
我知道我可以添加一点 Javascript ( if (top === window) {...}),但我认为纯 CSS 解决方案会更整洁。
if (top === window) {...}
那么有没有办法让 CSS 选择器仅在页面位于 IFrame 内时才匹配?
不,没有。
CSS 仅对当前文档进行操作。