0

所以我试图在我的 jQuery Mobile 网站上使用 TFL 小部件,但是它很小。我尝试通过 CSS 设置高度和宽度,但它不起作用,我希望它覆盖整个页面。我也试过在 TFL 网站上使用这两个版本,一个是固定宽度的,一个是可变宽度的,但它们都没有正常工作。

对此的任何帮助将不胜感激。

非常感谢。

抱歉,格式有点乱。这是我的代码:

    <html>
    <head>
<title></title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js">        </script>
<link rel="stylesheet" href="css/style.css">
   </head>
 <body>
<div data-role="page">

    <div data-role="header">
        <h1>Page Title</h1>
    </div>

    <div data-role="content">
        <div class="tflwidget">
<script language="JavaScript" src="http://www.tfl.gov.uk/tfl/syndication/widgets/serviceboard/embeddable/serviceboard-iframe-stretchy.js"></script></div>

    </div>

    <div data-role="footer" style="position:absolute; bottom: 0; left:0; right:0">
        <h4>Footer</h4>
    </div>




</div>

 </body>
 </html>
4

1 回答 1

0

好吧,您不会对带有 css 的 iframe 做太多事情。您想显式设置 iframe 的高度和宽度属性,如果父元素足够大,100% 可能是正确的值。

于 2012-04-30T13:33:06.457 回答