When using iFrame deployment you may want to change the default height and width and remove the iFrame border.

Remove iFrame border

To hide the border from around the iFrame you can set the frame border attribute to zero. For example: 

<iframe src="http://b6.caspio.com/dp.asp?AppKey=d63c3000f4ce51aa8c654d979233" frameborder="0">Sorry, but your browser does not support frames.</iframe>

Resize iFrame

An iFrame can be resized by defining a style attribute. For example: 

<iframe style="width: 100%; height: 300px;" src="http://b6.caspio.com/dp.asp?AppKey=d63c3000f4ce51aa8c654d979233">Sorry, but your browser does not support frames.</iframe>
code1
<iframe src="http://b6.caspio.com/dp.asp?AppKey=d63c3000f4ce51aa8c654d979233" frameborder="0">Sorry, but your browser does not support frames.</iframe>
code2
<iframe style="width: 100%; height: 300px;" src="http://b6.caspio.com/dp.asp?AppKey=d63c3000f4ce51aa8c654d979233">Sorry, but your browser does not support frames.</iframe>