Apply CSS to iframe

2019-08-02 20:13发布

问题:

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?

回答1:

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.



回答2:

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").