CSS を使用して、Facebook のファンページに角丸を作成したいと考えています。ファンページを作成しましたが、サファリ ブラウザで動作するスタイルを取得できません。私はSafari開発ツールに慣れていて、インラインスタイルを実行すると実際に機能しますが、fbmlコードに入れてもサファリでは何も更新されません。別の場所でホストされているスタイルシートにも同じスタイルを含めましたが、機能しません。任意の助けをいただければ幸いです。
角を丸くするための私のCSS
-webkit-border-radius: 0px 0px 8px 8px;
-moz-border-radius: 0px 0px 8px 8px;
-khtml-border-radius: 0px 0px 8px 8px;
-webkit-box-shadow: #666 0px 2px 3px;
border-radius: 0px 0px 8px 8px;
-moz-box-shadow: #666 0px 2px 3px;
box-shadow: #666 0px 2px 3px;
padding-left: 5px;
padding-right: 5px;
background: #DAE1EB;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#DAE1EB), to(#DAE1EB));
background: -moz-linear-gradient(#DAE1EB, #DAE1EB);
background: linear-gradient(#DAE1EB, #DAE1EB);
-pie-background: linear-gradient(#DAE1EB, #DAE1EB);