2016年2月21日 星期日

HTML小筆記


iframe (插入外部網頁) with=”100%” ,部屬至web server後,在IE樓覽器會發生無法顯示的狀態(呈現空白)
可以使用以下方式處理:(在iframe外部加上table標籤,並設定width=100%)
 <table width="100%" height="100%">
  <tr>
   <td width="100%" height="100%">
    <iframe id="iframe1" src="…." width="100%" height="100%"></iframe>
   </td>
  </tr>
 </table>

解決IE瀏覽器相容性問題 參考
<meta http-equiv="X-UA-Compatible" content="IE=9">
<meta http-equiv="X-UA-Compatible" content="IE=8"/>
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="IE=5">

沒有留言:

張貼留言