开发者

Apply CSS to iframe

开发者 https://www.devze.com 2023-01-23 09:27 出处:网络
I add iframe from external site to mine like this: <iframe src=\"http://site.com/page/\"></iframe>

I add iframe from external site to mine like this:

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

It has some own css and jav开发者_JS百科ascript files.

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


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.


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

0

精彩评论

暂无评论...
验证码 换一张
取 消