Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS3 font-size-adjust Property</title> <style> p { font-family: "DejaVu Sans", Arial, sans-serif; font-size-adjust: 0.6; } </style> </head> <body> <p>This is a paragraph.</p> <p><strong>Warning:</strong> The font-size-adjust property is only supported in Firefox. You should better avoid using this property.</p> </body> </html>