0
進出口尋找一種方法,使內容div
擴張的iframe
的點擊正確顯示iframe
內容,代碼:的div標籤和iframe中
<div id="content">
<div id='outerdiv'>
<iframe src="http://mywebsite.com" id='inneriframe' scrolling="no"></iframe>
</div>
</div><!-- end of content -->
CSS是
#content
{
width: 790px;
height:auto;
padding: 5px 55px 0;
}
#outerdiv
{
width:790px;
height:446px;
overflow:hidden;
position:relative;
}
#inneriframe
{
position:absolute;
top:-268px;
left:-230px;
width:1280px;
height:1198px;
}
任何建議,將不勝感激。
爲什麼不使用寬度:100%;高度:100%iframe – Hushme