色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

谷歌字體的模糊字體

洪振霞1年前8瀏覽0評論

我使用的是谷歌字體中的一種字體,由于某種原因,與默認字體相比,它看起來很模糊。我不確定這是否只是我的電腦。有沒有什么辦法可以修復(fù)模糊?

side-by-side comparison of the two fonts

h1 {
  font-family: 'Zilla Slab', serif;
  font-size: 88px;
  line-height: 90px;
  color: #262421;
}

.joe {
  font-family: serif;
}

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" href="main.css">
  <link rel="preconnect" >
  <link rel="preconnect"  crossorigin>
  <link  rel="stylesheet">
  <title>Document</title>
</head>

<body>
  <h1>Hello</h1>
  <h1 class="joe">Hello</h1>
</body>

我對HTML頁面中使用的字體和Google字體的渲染進行了測試和比較。我還在本地安裝了字體,以便進一步比較。在所有情況下,字體總是顯示輕微的模糊。

使用Firefox、Safari和Chrome在MacOS上進行的測試。

<!doctype html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, minimum-scale=1, maximum-scale=1">
        <title>Test</title>
        <link rel="preconnect" >
        <link rel="preconnect"  crossorigin>
        <link  rel="stylesheet">
        
        <style>
            h1 {
                color: black;
                font-family: 'Zilla Slab', serif;
                font-size: 100px;
                font-weight: 700;
            }
        </style>
    </head>
    
    <body>
        <h1>Hello</h1>
    </body>
</html>

您可以嘗試使用CSS文本陰影屬性,如下所示:

h1{
    font-family: 'Zilla Slab', serif;
    font-size: 88px;
    line-height: 90px;
    color: #262421;
  }

  h1.test{
    background: #28ff86;
  }

  .joe {
    font-family: serif;
  }

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  <title>Title</title>
  <link rel="stylesheet" href="style.css">
  <link rel="preconnect" >
  <link rel="preconnect"  crossorigin>
  <link  rel="stylesheet">

</head>

<body>
  <h1 class="test" style="text-shadow: 0 0 0 #262421;">Hello</h1>
  <h1>Hello</h1>
  <h1 class="joe">Hello</h1>

</body>

</html>