I am using in my asp.net page and tried to set the iframe height 100%, But its does not work.
views:
40answers:
3
A:
It is probably bounded by its parent's height. Set all ancestors to 100%, including the body and html tags if you want it to be the height of the window.
BC
2010-06-07 16:22:30
It snot working please tried it in ur page...i am changed all other parent tags style="height:100%".
Ayyappan.Anbalagan
2010-06-07 16:27:08
A:
How do you specify the height? Try to make it like this:
<iframe src="..." style="height:100%">
BlaXpirit
2010-06-07 16:22:44
A:
html, body, div, iframe { margin:0; padding:0; height:100%; } iframe { display:block; width:100%; border:none; }
Ayyappan.Anbalagan
2010-06-07 16:47:41