是否可以将iframe内容移动得更高?

时间:2013-09-09 13:32:18

标签: html iframe

我有一个iframe,我在emailmeform.com上使用,我想要做的是让iframe(表单)的内容在iframe中“裁剪”,以便从某个点开始。< / p>

原因是他们给你的iframe在顶部有一定的空间,这让我的网页看起来很乱。我希望更高的形式,以便我可以缩小我的iframe和我的文本之间的差距

我使用stackoverflow.com作为模拟iframe内容,因为我使用的表单有个人信息:

    <iframe height="1258" allowtransparency="true" frameborder="0" scrolling="no" style="width:100%; border:none" src="http://stackoverflow.com/">
    <a href=
    "http://stackoverflow.com/">Fill out form.</a></iframe>

1 个答案:

答案 0 :(得分:5)

style属性添加到您的iframe

<iframe src="blahblab" style="position:relative; top:-200px;"></iframe>

然后,iframe的内容将以200px偏移顶部显示内容。