object-position: <position> | inherit | initial;
  <!DOCTYPE html>
 <head>
 <title>CSS object-position property</title>
 <style>
 body{
 text-align: center;
 }
 img {
 width: 400px;
 height: 400px;
 border: 5px solid red;
 background-color: lightblue;
 object-fit: none;
 object-position: 90px 200px;
 }
 </style>
 </head>
 <body>
 <h2> object-position: 90px 200px </h2>
 <img src= "train1.png"/>
 </body>
 </html>
  
 
 <!DOCTYPE html>
 <head>
 <title>CSS object-position property</title>
 <style>
 body{
 text-align: center;
 }
 img {
 width: 400px;
 height: 300px;
 border: 5px solid red;
 background-color: lightblue;
 object-fit: none;
 object-position: center top;
 }
 </style>
 </head>
 <body>
 <h2>object-position: center top</h2>
 <img src= "train1.png"/>
 </body>
 </html>
  
 
 <!DOCTYPE html>
 <head>
 <title>CSS object-position property</title>
 <style>
 body{
 text-align: center;
 }
 img {
 width: 400px;
 height: 300px;
 border: 5px solid red;
 background-color: lightblue;
 object-fit: none;
 object-position: center top;
 }
 </style>
 </head>
 <body>
 <h2>object-position: center top</h2>
 <img src= "train1.png"/>
 </body>
 </html>
  
 
 <!DOCTYPE html>
 <head>
 <title>CSS object-position property</title>
 <style>
 body{
 text-align: center;
 }
 img {
 width: 400px;
 height: 300px;
 border: 5px solid red;
 background-color: lightblue;
 object-fit: none;
 object-position: left top;
 }
 </style>
 </head>
 <body>
 <h2>object-position: left top</h2>
 <img src= "train1.png"/>
 </body>
 </html>
  
 
 <!DOCTYPE html>
 <head>
 <title>CSS object-position property</title>
 <style>
 body{
 text-align: center;
 }
 img {
 width: 400px;
 height: 400px;
 border: 5px solid red;
 background-color: lightblue;
 object-fit: none;
 object-position: initial;
 }
 </style>
 </head>
 <body>
 <h2> object-position: initial</h2>
 <img src= "train1.png"/>
 </body>
 </html>
 