Remove the Iframe Border and Change the Size
When using iframe deployment you will likely want to change the default height and width and remove the iframe border.
Remove the iframe border
To hide the border from around the iframe you can set the frame border attribute to 0. For example:
<iframe frameborder=0 src="http://b2.caspio.com/dp.asp?AppKey=5b8c100099292518aacdxxxxxx">Sorry, but your browser does not support frames.</iframe>
Resize the iframe
An iframe can be resized by defining a style attribute. For example:
<iframe style="width:100%; height:300px" src="http://b2.caspio.com/dp.asp?AppKey=5b8c100099292518aacdxxxxxx">Sorry, but your browser does not support frames.</iframe>
