要使用像素设置字体大小,请使用带有font-size属性的 em 单元。
1em = 16px
您可以尝试运行以下代码以使用em设置字体大小
<!DOCTYPE html> <html> <head> <style> h1 { /* 30px/16 = 1.875em */ font-size: 1.875em; } </style> </head> <body> <h1>This is demo heading</h1> <p>This is demo text.</p> </body> </html>