views:

39

answers:

3

I am trying to find out whether a piece of content included via ajax, needs it's own call to the stylesheet, or relies upon the stylesheet loaded of the calling page...

It just isn't clear how it is being styled, and what is the source of that stylings....

My educated gut tells me it get it's styling from the calling page, but i'd like to see some solid reliable proof.

Thanks

+7  A: 

The dynamic content will be styled by whatever rules are already present.

Jonathan Sampson
A: 

Unless it opens a new window or tab in a browser, it's part of the page, and uses the same stylesheets.

Dean J
+2  A: 

If you use Firebug you can see detailed information about the styling of the page as the AJAX is being executed.

Achilles
I have, and how does it explain what style the newly ajaxed content is using?
crosenblum