1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<html> <head> <style> body { margin: 0px; } div { width: 200px; height: 200px; } #scale { transform: scale(2); transform-origin: top left; } #blend { mix-blend-mode: multiply; } </style> </head> <body> <div id="blend"> <div id="scale"> Hello </div> </div> </body> </html>