JSFiddle - React, Tailwind, and code Playground

by Chris LaFrombois

HTML

<a href="#">
    <h3>My really</h3>
    <img src="thumbnail.png" width="150" height="100" />
</a>

CSS

h3 {
    width: 300px;
    height: 40px;
    line-height: 40px;
    padding: 0 0 0 10px;
    margin: 0;
    display: inline-block;
    width: 150px;
    background-color: #0f0;
    overflow: hidden;
}

a {
    position: relative;
    display: block;
    margin-bottom: 20px;
    padding: 4px;
    border: 1px solid #000;
    width: 160px;
    height: auto;
}

img {
    background-color: #00f;
}