我使用 Static Html: iframes tab app 在我的 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
提前致谢。