使用 CSS 设置响应式字体大小
要设置响应式字体大小,请使用“视口宽度”,并将其设置为“vw”单位。您可以尝试运行以下代码以使用“vw”单位 −
范例
<!DOCTYPE html> <html> <head> <style> h1 { font-size:8vw; } </style> </head> <body> <h1>This is demo heading</h1> <p>This is demo text.</p> </body> </html>
广告
要设置响应式字体大小,请使用“视口宽度”,并将其设置为“vw”单位。您可以尝试运行以下代码以使用“vw”单位 −
<!DOCTYPE html> <html> <head> <style> h1 { font-size:8vw; } </style> </head> <body> <h1>This is demo heading</h1> <p>This is demo text.</p> </body> </html>