切换布局
显示结果
<!DOCTYPE html> <html> <head> <title>Em vs Rem - 迹忆客(jiyik.com)</title> </head> <style> .html { font-size: 30px; } .parent { font-size: 20px; } .child-rem { font-size: 2rem; margin: 1.5rem; } </style> <body> <div class="parent"> 这是父元素 <div class="child-rem"> 这是 rem 单位系统中的 Child </div> </div> </body> </html>