My question pertains to iframes - I am looking to apply styling to the contents of an iframe using only CSS within the srcdoc attribute.
<iframe name="myFrame" srcdoc="<span>Hi</span>"> </iframe>
Is it feasible to style the span element inside the srcdoc attribute without resorting to inline styles, and instead use a stylesheet?
If this is not possible, would the best approach be to include all HTML coding within the srcdoc attribute in order to achieve the desired styling?