由於HTML FRAMES標記的折舊,我一直無法使用iframe和divides創建相同的效果。我已經閱讀了StackOverflow和其他許多網站上的20個解決方案,似乎無法找到我需要的東西。帶有iframe填充剩餘部分的靜態左列頁面右側
我想在左邊有一個200像素寬的靜態列,並用iframe填充剩餘的頁面。我希望它也能填滿身高,(100%)。 iframe需要有滾動條。
該ifrane是偏離中心,並沒有mater我使用什麼代碼我結束了或者沒有滾動條或雙滾動條。任何幫助將不勝感激。
<!DOCTYPE HTML>
<html>
<head>
<style>
body, html {
margin:0px;
padding:0px;
overflow:hidden;
background: #f3f3f3;
}
iframe {
overflow:hidden;
height:100%;
width:100%
}
#leftcol {
position: absolute;
top: 0px;
left: 0px;
border: solid #0000ff 1px;
width: 200px;
height: 100%;
padding: 0px;
margin: 0px;
background: #ffffff;
}
#mainbody {
position: absolute;
top: 0px;
left: 200px;
border: solid #ff0000 1px;
height: 100%;
width: 100%;
padding: 0px;
margin: 0px;
background: #ffffff;
}
</style>
</head>
<body>
<div id="leftcol">Some text</div>
<div id="mainbody"><iframe height="100%" width="100%" src="http://example.com/"></iframe> </div>
</body>
</html>