blob: 5a1347ca56307b68faae0483fd3d88b47865cb3b [file] [log] [blame]
<html>
<style>
body { overflow: hidden; }
.scaled {
transform:scale(2);
-webkit-transform-origin: top left;
}
.clip-text {
background-color:red;
-webkit-background-clip:text;
-webkit-text-fill-color:transparent
}
</style>
<body>
<div class="scaled">
<span class="clip-text">This text should be nice and sharp.</span>
</div>
</body>
</html>