I am trying to display an image in iframe, image is larger than the iframe. Can I make it fit using HTML ?
Photo is 400 x 200, my iframe is 200x100, Is there an HTML coded iframe that will automatically fit the image to the iframe border?
I am trying to display an image in iframe, image is larger than the iframe. Can I make it fit using HTML ?
Photo is 400 x 200, my iframe is 200x100, Is there an HTML coded iframe that will automatically fit the image to the iframe border?
use seamless
attribute in iframe :<iframe src="demo_iframe.htm" seamless> </iframe>
And Cssiframe img{width:200px;}
Note : The seamless attribute is not supported in IE, Firefox, Opera 12 and earlier versions.