Recent Posts

Showing posts with label iframe. Show all posts
Showing posts with label iframe. Show all posts

Applying CSS to an iframe

There are two different things here: the style of the iframe block and the style of the page embedded in the iframe. You can set the style of the iframe block the usual way:<iframe name='iframe1' id="iframe1" src="empty.htm" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe> The style of the page embedded in the iframe must be either set by including it in the...