Does content loaded with AJAX automatically inherit the CSS styles from the main page?
For instance, if I load a
<span class="smallText">hello</span>
with AJAX.
Will this new HTML utilize the styles from the default.css
file:
.smallText {
font-size:6px;
}
?