Facebook 粉丝页面上的 css 内联样式 Safari
我想使用 CSS 在 facebook 粉丝页面上创建圆角。我已经创建了粉丝页面,但无法让样式适用于 safari 浏览器。我已经习惯了 Safari 开发工具,当我执行内联样式时,它实际上可以工作,但是当我将其放入 fbml 代码中时,safari 中没有任何更新。我还在其他地方托管的样式表中包含了相同的样式,但它不起作用。任何帮助将不胜感激。
我的圆角CSS
-webkit-border-radius: 0px 0px 8px 8px;
-moz-边框半径:0px 0px 8px 8px;
-khtml-边框半径:0px 0px 8px 8px;
-webkit-box-shadow: #666 0px 2px 3px;
边框半径:0px 0px 8px 8px;
-moz-box-shadow: #666 0px 2px 3px;
盒子阴影:#666 0px 2px 3px;
左内边距:5px;
右内边距:5px;
背景:#DAE1EB;
背景: -webkit-gradient(线性, 0 0, 0 底部, from(#DAE1EB), to(#DAE1EB));
背景:-moz-线性梯度(#DAE1EB,#DAE1EB);
背景:线性渐变(#DAE1EB,#DAE1EB);
-饼图背景:线性渐变(#DAE1EB,#DAE1EB);
I want to use CSS to create rounded-corners on facebook fan-page. I have created the fanpage but I can't get the styles to work for safari browser. I have used to Safari Development tools and when I do the in-line styles it actually works but when I go and put it in the fbml code, nothing updates in safari. I have also included the same style in a stylesheet which is hosted somewhere else and it doesn't work. any help would be appreciated.
My CSS for rounded-corners
-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);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不明白为什么它不起作用。
试试这个:
在 CSS 的 src 中,在
.css
之后尝试放置.css?2
(任意数字)。我在 FB 缓存和 CDN 方面遇到了一些问题,这通常可以解决问题。
让我知道这是否有帮助。
I don't see why it shouldn't work.
Try this:
In the src of your CSS after is says
.css
try putting.css?2
(any number).I've had some problems with FB caching and it's CDN, this usually solves it.
Let me know if this helps.