Answers for "Landscape-oriented Images"

0

Landscape-oriented Images

<div class="circular--landscape">
  <img src="images/barack-obama.png" />
</div>
Posted by: Guest on April-25-2021
0

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;
}
Posted by: Guest on April-25-2021

Browse Popular Code Answers by Language