我正在尝试将按钮文本的权重更改为粗体(在某些情况下)。为此,我在bootstrap.css中创建了一个新类,基本上是btn类的一个副本,其字体为font-weight:bold-我将类btnbold命名为:
.btnbold {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: bold;
line-height: 1.428571429;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
border: 1px solid transparent;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
然后,我编写了以下代码来观察按钮的各种变化,包括使文本变为粗体:
<button type="button" class="btn">Basic</button>
<button type="button" class="btnbold btn-default">Bold Default</button>
我在开发区域中测试了此代码,并且按预期的方式显示了“ Bold Default”按钮-文本为粗体。当我通过更改导出到我们的网站时,“粗体默认”按钮文本不是粗体,但是按钮边框具有凸起的外观。两种情况下我都使用IE。
帮助????
谢谢 丰富
答案 0 :(得分:0)
从不依赖font-weight
。某些字体没有粗体(实际上,大多数Google字体不支持font-weight
)。最好使用@import
或<link>
该字体的粗体。
如果字体是您所做的更改之一,请确保新字体支持粗体。
如果您没有更改字体,我建议您阅读this solution。