是否可以绝对定位iframe?我可以定位顶部和左侧,但不能定位底部和右侧.我需要完成所有四个方面.
<iframe src="http://apple.com/" id="myframe"></iframe>
Run Code Online (Sandbox Code Playgroud)
#myframe {
position: absolute;
top: 40px;
left: 40px;
right: 40px;
bottom: 40px;
}
Run Code Online (Sandbox Code Playgroud)
看看我的小提琴
这只是一个想法,我包我<iframe>有<div>,看这里:
jsfiddle.net/bTrfD/1/
<div>
<iframe src="http://apple.com/" id="myframe"></iframe>
</div>
Run Code Online (Sandbox Code Playgroud)