up vote 15 down vote favorite
3
share [g+] share [fb]

Is it possible to change styles of a div that resides inside an iframe on the page using CSS only?

link|improve this question
feedback

6 Answers

In short, no. You can not apply CSS to HTML that is loaded in an iframe, unless you have control over the page loaded in the iframe.

link|improve this answer
feedback

You need JavaScript. It is the same as doing it in the parent page, except you must prefix your JavaScript command with the name of the iframe.

Remember, the same origin policy applies, so you can only do this to iframe is coming from your own server.

I use the Prototype framework to make it easier:

frame1.$('mydiv').style.border='1px solid #000000'

or

frame1.$('mydiv').addClassName('withborder')
link|improve this answer
see my this question it's similar stackoverflow.com/questions/1962707/… but can't we change style if frame is from another server? – Jitendra Vyas Dec 29 '09 at 13:27
1  
That is correct. The Iframe content is subject to the same-domain policy. If it's from your domain, you can control it, if not, you're locked out. This prevents all kinds of Iframe-based page hijacking. – Diodeus Dec 29 '09 at 16:08
feedback

probably not the way you are thinking. the iframe would have to <link> in the css file too. AND you can't do it even with javascript if it's on a different domain.

link|improve this answer
Can you possibly give an example of how this can be done? Do you mean something like <iframe src="/source" link=css-stylesheet:"/css.css">? – Ant May 6 '11 at 20:33
feedback

The quick answer is: No, sorry.

It's not possible using just CSS. You basically need to have control over the iframe content in order to style it. There are methods using javascript or your web language of choice (which I've read a little about, but am not to familiar with myself) to insert some needed styles dynamically, but you would need direct control over the iframe content, which it sounds like you do not have.

link|improve this answer
feedback

Yes. Take a look at this other thread for details: How to apply CSS to iFrame?

var cssLink = document.createElement("link");
cssLink.href = "style.css";  cssLink .rel = "stylesheet";  
cssLink .type = "text/css";  
frames['frame1'].document.body.appendChild(cssLink); 
link|improve this answer
is frame1 the id of the iframe ?? – Toni Michel Caubet Nov 28 '11 at 17:08
Yes, frame1 is the id of the iframe. – Eugene Rosenfeld Dec 15 '11 at 23:49
feedback

Actually, you can use tags in the html that feeds your iframe, if you can edit it.

In the HTML file that I'm calling up I could use something like this:

<style>
  h1 { font 16px/1.25 Helvetica, Arial, sans-serif }
  a { text-decoration: none: }
</style>

It may be a bit redundant with your main style sheets, but it works.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown