I will be serving 3rd party content to other sites through an iframe. The content will be presented in a table. Is there any way to use internal style sheets where the defintions are defined within the iframe?? I have read that internal style sheets should only be defined in the head section. External css is not an option.
Here is an example of the content that would show inside the iframe.
<STYLE TYPE="text/css">
.className{
background-color: #444444;
}
</STYLE>
<table>
<tr>
<td class="className">
Column 1.
</td>
<td>
Column 2.
</td>
</tr>
</table>
Or is the only alternative to use inline css?