我创建了一个按钮并使用了 Roboto 字体。在各种浏览器(chrome 和 firefox)上进行测试时,我注意到文本似乎有所不同。
当我使用字体粗细时出现问题:粗体。
CHROME: 这就是 chrome 上的字体
火狐: 这就是火狐上的字体
这就是 CSS 的样子。
.yellow-button {
width: 91%;
height: 48px;
background: rgba(255, 212, 0, 1);
opacity: 1;
position: absolute;
top: 109px;
left: 0;
right: 0;
margin-left: auto !important;
margin-right: auto !important;
border-radius: 10px;
box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.03999999910593033);
overflow: hidden;
}
.button-text {
width: fit-content;
color: rgba(55, 4, 63, 1);
position: absolute;
top: 12px;
left: 0;
right: 0;
margin-left: auto !important;
margin-right: auto !important;
font-family: Roboto;
font-weight: Bold;
font-size: 18px;
opacity: 1;
text-align: center;
}
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet" />
<button class="yellow-button">
<span class="button-text">Hello world test 123</span>
</button>