开发者

How to make the height jQuery tabs content 800 px?

开发者 https://www.devze.com 2023-01-27 03:57 出处:网络
I\'m using this jquery ui tabs plugin,the content of each tab is an <iframe>: <p><iframe src=\"xxx.php\" style=\"width: 100%; height: 100%;\"></iframe></p>

I'm using this jquery ui tabs plugin,the content of each tab is an <iframe>:

<p><iframe src="xxx.php" style="width: 100%; height: 100%;"></iframe></p>

However the height of the tab content is about 400px,how can I make it 开发者_StackOverflow社区800px so that the scroll bar of <iframe> can disappear?


Is there a reason you couldn't specify that the height of the iframe is 800px? i.e.

<p><iframe src="xxx.php" style="width: 100%; height: 800px;"></iframe></p>
0

精彩评论

暂无评论...
验证码 换一张
取 消