JSFiddle - React, Tailwind, and code Playground

by jmpp77

HTML

<div class="avatar">
  <img src="https://i.pravatar.cc" alt="Photo utilisateur">
</div>

CSS

.avatar {
	width: 150px;
	height: 150px;
  border: 5px solid #007090;
  padding: 5px;
  margin: 50px;
}

.avatar img {
	max-width: 100%;
	max-height: 100%;
}