Static Html: iframes tab アプリを使用して、Facebook ページにタブを追加しました。
Chrome では正常に動作しますが、IE では「安全なコンテンツのみが表示されます」という通知が表示されます。
背景画像はSSLにリンクされており、ページにリンクされている他の外部コンテンツはなく、テキスト付きのhtmlのみであるため、原因についてはわかりません...これ
が私のコードです:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
body {
direction: rtl;
background-image: url('https://lh3.googleusercontent.com/-8GcYUqtmItc/UDc8OSEOdZI/AAAAAAAAD_g/denZSy7Be_0/s800/bg.jpg');
margin: 0;
padding: 0;
border: none;
overflow: hidden;
font: Arial;
font-size: 18px;
color: #00000;
}
#header {
padding: 0;
margin: 0 auto;
border: none;
width: 100%;
height: 190px;
}
</style>
<title>Page Title</title>
</head>
<body>
<div id="header"></div>
<div id="content">
<table width="90%" cellpadding="10" border="0" align="center">
<tr>
<td align="right" dir="rtl">
<p>
Some text...
</p>
</td>
</tr>
</table>
</div><!-- content -->
</body></html>
実際のページ リンクは次のとおりです: http://facebook.com/#!/GioraSalz/app_349708898445501
前もって感謝します。