html 框架 css
我想知道是否有某种方法可以指定框架中的页面使用以下样式表 家长?或者为框架指定样式表?框架集或框架标签上的一些选项?
I wonder if there's some way to specify that a page in a frame is to use the style sheet of
the parent? Or to specify a style sheet for the frame? Some option on the frameset or frame tag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
没有这样的选择。但是,您可以在加载后并且从同一域加载时将
link
元素注入到框架中。There is no such option. But you could inject
link
element into the frame after it loads and if it loads from the same domain.我认为没有任何方法可以指导框架使用父级中使用的CSS。大多数人使用框架来实现 css 隔离。
您可以编写一个简单的脚本来将所有外部 css 引用从父级复制到框架
I dont think there is any way by which you can direct a frame to use css used in the parent. Most people use frames to acheive css isolation.
you can write a simple script to copy all external css references from the parent to the frame
如果框架是 PHP 页面,您可以将它们放置在框架中,例如
然后在框架源中具有
的选项不太可能存在,因为每个框架都是它自己的页面、上下文等。
If the frames are PHP pages you could place them in the frame like
Then in the frame source have
It is unlikely than an option for
<frame>
exists since each frame is it's own page, context, etc.