如何在wordpress上移动iframe?

时间:2014-02-26 11:37:40

标签: javascript html css wordpress iframe

我对Google地图的iframe有疑问。 我想将Google地图放在表单的左侧。

现在页面:http://imgur.com/cp0G5NU.png enter image description here

代码在这里:

output=embed" height="480" width="640" frameborder="0" 
      marginwidth="0" marginheight="0" scrolling="no" 
        "style="position:absolute; left:150; bottom:-10"

1 个答案:

答案 0 :(得分:0)

你可以通过将iframe放在div中并将其浮动到左边并将表单放在另一个div中并将其浮动到左侧来完成此操作。

<div style="float:left;">IFRAME CODE</div>
<div style="float:left;">[FORM CODE]</div>