HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p:nth-child(2){ font-stretch: condensed; color: red; } p:nth-child(3){ font-stretch: expanded; color: blue; } </style> </head> <body> <h1>CSS font-stretch Property</h1> <p>This is a paragraph</p> <p>This is a paragraph</p> <p><strong>Note</strong>: CSS 'font-stretch' property is not supported in any modern web browser.</p> </body> </html>
OUTPUT
×

Save as Private