JSFiddle - React, Tailwind, and code Playground

by rafalry

HTML

<div id="container">
    <img id="screen" src="http://i.space.com/images/i/000/035/705/i02/sn1987a-composite-image.jpg?1389021765" />
    <div id="footer">
    </div>
</div>

CSS

#container {
    background-color: grey;
    max-width: 100%;
    display: table;
}
#screen {
    background-color: blue;
    max-width: 100%;
}
#footer {
    background-color: pink;
    max-width: 100%;
    min-width: 100px;
    height: 50px;
    display: table-caption;
    caption-side: bottom;
}

body {
    padding: 20px;
}