0

私は2ビットのテキストを持っています。1 つは段落要素内にあり、もう 1 つは送信ボタン入力用のテキストです。

ここに画像の説明を入力

ここに画像の説明を入力

ボタンのフォントが少し太いのはなぜですか?

ここに画像の説明を入力

段落 CSS (Chrome デベロッパー ツールの Computed Style から取得)

box-sizing: border-box;
color: rgb(255, 255, 255);
display: block;
float: left;
font-family: 'Din Text Pro Regular', Arial, Helvetica, sans-serif;
font-size: 16px;
font-style: normal;
font-weight: normal;
height: 24px;
line-height: 24px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 16px;
margin-top: 11.199999809265137px;
width: 119px;

入力 CSS (Chrome デベロッパー ツールの Computed Style から取得)

-webkit-appearance: none;
-webkit-border-image: none;
-webkit-box-align: center;
-webkit-box-shadow: rgba(0, 0, 0, 0.65098) 0px 1px 3px 0px, rgba(97, 232, 203, 0.701961) 0px 1px 0px 0px inset;
-webkit-rtl-ordering: logical;
-webkit-user-select: text;
-webkit-writing-mode: horizontal-tb;
background-color: rgb(192, 192, 192);
background-image: -webkit-linear-gradient(top, rgb(75, 208, 179), rgb(38, 174, 144));
border-bottom-color: rgb(255, 255, 255);
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
border-bottom-style: none;
border-bottom-width: 0px;
border-left-color: rgb(255, 255, 255);
border-left-style: none;
border-left-width: 0px;
border-right-color: rgb(255, 255, 255);
border-right-style: none;
border-right-width: 0px;
border-top-color: rgb(255, 255, 255);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-top-style: none;
border-top-width: 0px;
box-shadow: rgba(0, 0, 0, 0.65098) 0px 1px 3px 0px, rgba(97, 232, 203, 0.701961) 0px 1px 0px 0px inset;
box-sizing: border-box;
color: rgb(255, 255, 255);
cursor: pointer;
display: inline-block;
font-family: 'Din Text Pro Regular', Arial, Helvetica, sans-serif;
font-size: 16px;
height: 41px;
letter-spacing: normal;
line-height: 16px;
margin-bottom: 0px;
margin-left: 10px;
margin-right: 0px;
margin-top: 0px;
padding-bottom: 10px;
padding-left: 20px;
padding-right: 20px;
padding-top: 11px;
text-align: center;
text-indent: 0px;
text-shadow: rgba(24, 97, 81, 0.34902) 0px 1px 0px;
text-transform: none;
vertical-align: baseline;
white-space: pre;
width: 159px;
word-spacing: 0px;
writing-mode: lr-tb;
4

2 に答える 2

1

これをCSSの一番上に置くことができました。少なくともこれまでのところ、それはうまくいくようです:

button {
-webkit-font-smoothing: antialiased;
}
于 2014-11-24T20:33:32.960 に答える
0

どうやら Chrome はバグの一種で、色の明るさに応じてフォントが太く表示されるようです。

詳細はこちら: https://code.google.com/p/chromium/issues/detail?id=163369

編集:より多くの関連情報を見つけて修正

実際、これは既知の バグです:

この記事に従うことで、これを修正できました。

ちょっと遅いですが、それでも一部の人には役立つかもしれません。

于 2014-01-14T01:59:25.937 に答える