910e62b5创建于 1月15日历史提交
<!DOCTYPE html>
<style>
div {
  will-change: transform, filter;
  margin: 10px;
  padding: 2px;
  transform-origin: 0 0;
  transform: scale(1.5) translate(0.4px, 0.6px);
}
</style>
All of the following texts should not be blurry.
<div>SHARP TEXT</div>
<div>
  <div style="will-change: transform">SHARP TEXT</div>
</div>
<div>
  <div>SHARP TEXT</div>
</div>