Facebook发送和喜欢的盒子被削减

时间:2012-08-11 16:16:14

标签: html css facebook

有没有人知道是什么原因导致了我的喜欢并发送信箱突然切断了?您可以尝试my site上的所述按钮来查看我的意思。

编辑:以下是IE,Firefox和Chrome中的内容: enter image description here

1 个答案:

答案 0 :(得分:1)

在CSS文件http://easydiablo3.com/themes/MyTheme/css.axd?name=style2.5.0.6.css中,您有以下CSS:

.postSocialButtons .fb_ltr {
     width: 126px !important;
}

宽度声明末尾附加的!important会导致此宽度覆盖所有其他宽度,并显示发送框被截断的外观。

这是一个完美的例子,说明为什么在使用!important声明时应该注意。