Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS3 font-stretch Property</title> <style> p { font-family: Arial, Helvetica, sans-serif; font-stretch: condensed; } </style> </head> <body> <p>This is a paragraph.</p> <p><strong>Warning:</strong> The font-stretch property is only supported in Firefox and Internet Explorer.</p> </body> </html>