试图在我页面的某个位置设置这个html iframe?

时间:2012-02-21 02:06:14

标签: html css

我试图将这个html i-frame设置在我身体页面的某个位置,但我无法弄清楚要使用的代码或方法?

    <div style="overflow: hidden; width: 333px; height: 156px; position src="h: relative;" id="i_div"><iframe name="i_frame"http://url.com/click.php?aff=2057&amp;camp=2056&amp;crt=6077&amp" style="border: 0pt none ; left: -585px; top: -273px; positionabsolute; width: 1024px; height: 576px;" scrolling="no"></iframe></div>

1 个答案:

答案 0 :(得分:1)

看起来像是一个拖放式剪切和粘贴错误。清除了该代码中的一些错误:

<div style="overflow: hidden; width: 333px; height: 156px; position: relative;" id="i_div">
  <iframe name="i_frame" 
    src="http://url.com/click.php?aff=2057&amp;camp=2056&amp;crt=6077&amp"
    style="border: 0pt none; left: -585px; top: -273px; position: absolute; width: 1024px; height: 576px;" 
    scrolling="no">
  </iframe>
</div>