大大你們好,
小魯妹我這次首次寫網站 好不容易在chrome 寫好還開用的網站後
在IE8 打開後 變完全悲劇 想問各位有無類似問題
通常會遇到什麼問題 因為我對我遇到的問題不知道從哪去下手解決
==========================================================
以下是我遇到第一個崩潰問題 在chrome 簡簡單單 切成左右版面
(左邊連結可以顯示在右邊 那種設計)
在IE8 左邊不見了 右邊正常顯示
但以下明明就都是基本的code orz....
請各位大大幫忙解禍
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HAHAHA</title>
</head>
<style>
* {
padding:0px;
border:0px;
margin:0px;
}
#left {
position:fixed;
top:0px;
bottom:0px;
left:0px;
right:83%;
}
#right {
position:fixed;
top:0px;
bottom:0px;
left:17%;
right:0px;
}
iframe {
width:100%;
height:100%;
}
</style>
<body>
<div id='left'><iframe src='left.php'></iframe></div>
<div id='right'><iframe id ="rr" src='right.php'></iframe></div>
</body>
</html>