【发布时间】:2015-04-29 11:06:57
【问题描述】:
如果 Chrome 是这样的:
.text-center {
text-align: -webkit-center;
}
和火狐:
.text-center {
text-align: -moz-center;
}
歌剧怎么样?
.text-center {
text-align: -o-center;
}
不工作。
更新:
HTML:
.container
.text-center.label-margin
%h3
.bubble LEADERSHIP
我的气泡类的 CSS。
.bubble {
position: relative;
width: 170px;
height: 45px;
padding: 11px 0 0 0 !important;
background-color: #333333 !important;
font-style: normal !important;
font-family: 'Fira Sans', sans-serif;
font-size: 25px;
font-weight: 600;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
color: #fff;
}
看起来像在 OPera
【问题讨论】: