Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа</title> <style> img.tree { width: 200px; height: 400px; border: 2px solid #8ebf42; object-fit: none; object-position: 50% 50%; } </style> </head> <body> <h2>Пример свойства object-position</h2> <h3>Оригинальное изображение:</h3> <img src="/uploads/media/default/0001/01/b408569013c0bb32b2afb0f0d45e93e982347951.jpeg" alt="Tree" width="300" height="200"> <h3>Object-position: 50% 50%</h3> <img class="tree" src="/uploads/media/default/0001/01/b408569013c0bb32b2afb0f0d45e93e982347951.jpeg" alt="Tree" width="300" height="200"> </body> </html>