How would I remove the border from an iframe embedded in my web app? An example of the iframe is:
<iframe src="myURL" width="300" height="300">Browser not compatible.</iframe>
I would like the transition from the content on my page to the contents of the iframe to be seamless, assuming the background colors are consistent. The target browser is IE6 only and unfortunately solutions for others will not help.
Style property can be used For HTML5 if you want to remove the boder of your frame or anything you can use the style property. as given below
Code goes here
also set border="0px "
To remove border you can use CSS border property to none.
Its simple just add attribute in iframe tag frameborder = 0
<iframe src="" width="200" height="200" frameborder="0"></iframe>
Add the frameBorder attribute (Capital ‘B’).
In your stylesheet add
This is also a viable option.