выровнять фрейм - PullRequest
       9

выровнять фрейм

1 голос
/ 03 марта 2010

У меня есть HTML-страница, и я хочу выровнять iframe внизу страницы так, чтобы iframe занимал всю ширину, я не могу выровнять iframe внизу. страница.

<html>
<body>

<p>The rest of the code has not been mentioned to reduce code overflow.</p>
<p>I want to align the iframe after a long page having no. of jquery , images etc.</p>

<iframe src ="bottom.html" width="100%" height="200" style="float:bottom" scrolling="no" frameborder="0">
<p>Your browser does not support iframes.</p>
</iframe>
</body>
</html>

Ответы [ 2 ]

1 голос
/ 03 марта 2010
<iframe src="bottom.html" style="position:absolute; bottom:0px; height:200px; width:100%;" scrolling="no" frameborder="0">

Извините.Попробуйте вместо этого.

0 голосов
/ 10 марта 2010

Используйте верхний тег вместо нижнего.

<iframe src="bottom.html" style="position:absolute; top:450px; height:200px; width:100%;" scrolling="no" frameborder="0">
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...