首页
CSS
CSS 单位
试用:使用 rem
运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
转到 Spaces
<!DOCTYPE html> <html> <head> <style> body { font-size:16px; } div { font-size: 2rem; 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 2rem.</div> <p>The rem unit sets the font-size relative to the browsers base font-size, and will not inherit from its parents.</p> </body> </html>