I have an iframe on in a div, with a background colour. When the page is loading, the iframe placeholder turns white. Is there any way to change the background when an iframe is loading?
Thank you in advance.
I have an iframe on in a div, with a background colour. When the page is loading, the iframe placeholder turns white. Is there any way to change the background when an iframe is loading?
Thank you in advance.
Hey,
Maybe something like
<iframe src="http://www.google.com/" width="500" height="400" style="background-color: red;"></iframe>
Would work?
You could also give the iFrame a Class or ID and give it CSS styles.
For images:
<iframe src="http://www.google.com/" width="500" height="400" style="background-image: url('http://www.google.co.uk/intl/en_uk/images/logo.gif');"></iframe>