css - Div with external stylesheet? -
i have been given external stylesheet (.css file) may not altered in way whatsoever. need apply stylesheet single div , therefore contents of div in existing webpage. reading contents of stylesheet text blank style tag (using .innerhtml) within div need affect still affects entire web page rather single div. please this?
the iframe solution works this:
in main html file, you'll have div:
<div id="myspecialdiv"> <iframe width="100%" height="100%" frameborder="0" src="divcontent.html"></iframe> </div> style need it. divcontent.html file should complete html file, including content of div tag, , link using external stylesheet:
<html> <head> <link rel="stylesheet" href="path/to/external/stylesheet.css" /> </head> <body> <!-- contents of div --> </body> </html>
Comments
Post a Comment