Object Position Right

Focus the right side of the image.

Preview

Code

<style>
.box{
width:200px;
height:140px;
overflow:hidden;
}

img{
width:100%;
height:100%;
object-fit:cover;
object-position:right;
}
</style>

<div class="box">
<img src="https://via.placeholder.com/400x250">
</div>

More CSS object-position Examples (8)