这个问题很简单。
我使用 Bootstrap,所有粗体的东西都是 CSSized
tag {
font-weight: bold;
}
但我使用Open Sans
(和很多人一样),哪里font-weight: 400
还不够,font-weight: 700
而且好多了。
有没有办法告诉我的 CSSbold=700
而不是 400(我认为这是默认值)?
=====
编辑
我一定是不清楚。
仅在 CSS中,在不修改 Bootstrap 源的情况下,有许多位置(此处为整个列表),其中 bootstrap 表示(例如)
h6 {
font-weight: bold
}
我希望网络浏览器理解在这种情况下bold
应该等效于font-weight: 700
而不是font-weight: 400
默认情况下不重写所有规则(例如)
h6 {
font-weight: 700
}
答案可能是目前不可能,但谷歌还没有给我任何答案。