JSFiddle - React, Tailwind, and code Playground

by marcoos

CSS

/*
I want to have the background of the body
drawn IN the body.
*/

html {
    background: #fff;
}

body {
    width: 100px; height: 100px;
    border: 4px solid blue;
    background-image: url(http://people.mozilla.com/~faaborg/files/shiretoko/firefoxIcon/firefox-256.png);
    background-repeat: no-repeat;
    margin: auto;
    display:block;
}