运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> p.a { zoom: normal; } p.b { zoom: 150%; } p.c { zoom: 0.6; } </style> </head> <body> <h1>The zoom Property</h1> <h2>zoom: normal (default):</h2> <p class="a">This is some text. The text will render as normal.</p> <h2>zoom: 150%:</h2> <p class="b">This is some text. The text is zoomed in.</p> <h2>zoom: 0.6:</h2> <p class="c">This is some text. The text is zoomed out.</p> </body> </html>