Когда я применяю стиль font-weight:bold
, внешний вид шрифта слишком смелый в Safari по сравнению с другими браузерами. Я попробовал ниже css, как было предложено на каком-то сайте, но его все равно то же самое.
text-shadow: #000000 0 0 0px;
Скриншоты рендеринга текста:
Chrome
Safari
Здесь мое объявление css:
p {
margin: 8px 5px 0 15px;
color:#D8D2CE;
font-size:11pt;
letter-spacing:-1px;
font-weight: bold;
font-family: LektonRegular;
}
@font-face {
font-family: 'LektonRegular';
src: url('myfonts/lekton-regular-webfont.eot');
src: url('myfonts/lekton-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('myfonts/lekton-regular-webfont.woff') format('woff'),
url(myfonts/lekton-regular-webfont.ttf) format('truetype'),
url('myfonts/lekton-regular-webfont.svg#LektonRegular') format('svg');
font-weight: normal;
font-style: normal;
}
Как это можно зафиксировать?