JSFiddle - React, Tailwind, and code Playground
by James Munch
HTML
<div class="container roundy">
<a href="#"><img src="https://placehold.it/350x150" class="someimg roundy" /></a>
</div>
CSS
.roundy {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
img.someimg:hover {
opacity: 0.7;
}
div.container {
background-color: #000;
width: 350px;
height: 150px;
}