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