JSFiddle - React, Tailwind, and code Playground

by darkajax

HTML

<div>
<img src="http://keogh.github.io/itson-navojoa-slides/img/nearsoft-logo.png"><strong>Playlist</strong>
    <span>
        <i>A</i>
        <i>B</i>
        <i>C</i>
        <i>D</i>
    </span>
</div>
    <input type="text" readonly/>

CSS

img {
    height: 30px;
    float: left;
}

input {
    text-decoration: line-through;
    border: none;
    background-color: transparent;
}

span {
    float:right;
}
body {
    background: red;
}

div {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}