vote up 1 vote down star

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

flag

4 Answers

vote up 2 vote down

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|flag
vote up 1 vote down

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|flag
vote up 2 vote down

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|flag
vote up 7 vote down

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|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.