我有iframe我需要把它移到某个地方,也许你不理解我
不尊重
我想做的是让我的iframe从src =“”内移动,所有iframe都是这样的
位置:绝对;顶部:0px;左:0px
我的意思是在左上角。我想让它成为正确的顶角或类似的东西,但更准确
我希望可以帮助我并思考。
<iframe id='iframe_top' src="http://www.w3schools.com/tags/att_iframe_height.asp"scrolling="no" marginheight="300" >
答案 0 :(得分:0)
您需要使用css:
<div class="container">
<iframe id='iframe_top' src="http://www.w3schools.com/tags/att_iframe_height.asp"scrolling="no" marginheight="300" >
</div>
你的css:
.container {
position: relative;
height: 800px;
}
.container iframe {
position: absolute;
top: 0;
right: 0;
}
您可以将CSS代码放在<style>
<head>
标记内
<head>
<style>
/* YOUR CSS */
</style>
</head>