我想使用 font-awesome 和 bootstrap 中的 facebook 图标设置“使用 facebook 登录”按钮的样式
为此,我有以下 html
<a href="#" class="btn btn-large login_facebook">
<i class="icon-facebook"> </i> | Sign in with Facebook</a>
并添加到这个适当的CSS
.login_facebook {
background: #6e86bd;
background: -moz-linear-gradient(top, #6e86bd 0%, #6680b9 100%);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#6e86bd), to(#6680b9));
border-top: 1px solid #3f5b98;
border-left: 1px solid #3f5b98;
border-bottom: 1px solid #3f5b98;
border-right: 1px solid #3f5b98;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
-moz-box-shadow: inset 0 1px 0 0 #abbbdf;
-webkit-box-shadow: inset 0 1px 0 0 #abbbdf;
box-shadow: inset 0 1px 0 0 #abbbdf;
color: #fff;
font-weight: bold;
text-align: center;
text-shadow: 0 -1px 1px #344d80;
margin: 0 0 10px 0;
vertical-align: top;
position: relative;
}
.login_facebook .icon-facebook {
font-size: 37px;
vertical-align: bottom;
position: relative;
bottom: 0;
line-height: 0px;
}
在 chrome 上,f 图标与按钮的底部对齐,但在 Firefox 上,即它没有
最终结果在所有浏览器上都应该是这样的
最好在 jsfiddle http://jsfiddle.net/KM2tS/1/上看到
我猜我需要在这里添加浏览器特定的样式,但是哪些样式呢?有没有办法让所有浏览器在这种特定情况下表现相同?