Landscape-oriented Images code example
Example 1: Landscape-oriented Images
.circular--landscape {
display: inline-block;
position: relative;
width: 200px;
height: 200px;
overflow: hidden;
border-radius: 50%;
}
.circular--landscape img {
width: auto;
height: 100%;
margin-left: -50px;
}
Example 2: Landscape-oriented Images
<div class="circular--landscape">
<img src="images/barack-obama.png" />
</div>