Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> img.tree { width: 200px; height: 400px; object-fit: scale-down; } </style> </head> <body> <h2>Object-fit property example</h2> <h3>Original image:</h3> <img src="/uploads/media/default/0001/01/b408569013c0bb32b2afb0f0d45e93e982347951.jpeg" alt="Tree" width="300" height="200"> <h3>Scale-down value:</h3> <img class="tree" src="/uploads/media/default/0001/01/b408569013c0bb32b2afb0f0d45e93e982347951.jpeg" alt="Tree" width="300" height="200"> </body> </html>