运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> body { font-size:16px; } div { font-size: 3ch; border: 1px solid black; } </style> </head> <body> <p>The font-size of this document is 16px.</p> <div>The font-size of this div element is 3ch.</div> <p>The ch unit sets the font-size relative to the width of the character "0".</p> </body> </html>