JSFiddle - React, Tailwind, and code Playground

by zhangchi

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>
  <div class="normal"> 你好</div>
  <div class="antialiased">你好</div>
</body>
</html>

CSS

body{
  font-size:48px;
}
.antialiased{
   -webkit-font-smoothing: antialiased;
}