这个 css 规则在 IE 和 chrome 中运行良好。
在 Firefox 中,它要求 padding-bottom 为 8px。我尝试了几种方法,但似乎没有任何效果。
.wish
{
color: white;
font-size: 15px;
text-transform: capitalize;
font-weight: normal;
padding-right: 15px;
padding-left: 10px;
margin-right: -7px;
padding-bottom: 9px;
}
我试过这个
.wish, x:-moz-any-link, x:default
{
padding-bottom:8px;
}
但 Firefox 忽略了它。