I have a question regarding the style in the iframe
the problem i have only access to the css file
I have lets say the following
<html>
<body>
...
<iframe src="abc" />
...
</body>
</html>
is there anyway I can change the width for the first html to 960px and the other to 100%
cause if I change the html attribute in the css it will affect both of them
I tried the first-child and iframe html {} but it didnt work
Thanks for helping
A document loaded into an iframe is an independent document. CSS does not cascade through the iframe into it. You style the two pages independently with their own stylesheets.