Apply CSS to iframe

2019-08-02 20:33发布

I add iframe from external site to mine like this:

<iframe src="http://site.com/page/"></iframe>

It has some own css and javascript files.

How can I add my own css styles to this iframe?

2条回答
等我变得足够好
2楼-- · 2019-08-02 20:50

Are you trying to format the iframe border or its content? The latter isn't allowed for security reasons, the former can be archieved with a simple stylesheet (selector "iframe").

查看更多
Ridiculous、
3楼-- · 2019-08-02 21:04

If the iframe source is not the same domain as your site, you can't add your own CSS to it due to same origin policy.

查看更多
登录 后发表回答