我在页面中使用Iframe。此Iframe加载HTML文件。我想从加载的HTML样式化这个Iframe。有可能吗?
<iframe style="width:600px;height:525px;border:0;position:absolute;right:0;bottom:30px;" sandbox="allow-same-origin allow-scripts allow-popups allow-forms" src="widget.html"></iframe>
我可以将样式移至widget.html
吗?
答案 0 :(得分:3)
如果这些样式有效,您可以通过将当前的内嵌样式移动到stylesheet
或将它们移动到html页面本身上的<style>
标记并仅调用一个类来简化它比如class="iframestyle"
至于你可以操作iFrames的样式,这里有一篇你可能想要阅读的文章:How to style iFrames - Styling iFrames with CSS