JSFiddle - React, Tailwind, and code Playground

by Jeremy Lewis

HTML

<title>YoYoMcAwesome's Comics</title>
<body class="Body">
    <div class="Container">
        <div class="Container002">
            <img src="http://tottownusa.com/wp-content/uploads/2011/09/bear.png">
        </div>
    </div>

CSS

.Body {
		    margin:auto;
		    background-color:rgb(200, 200, 255)
		}
		.Container {
		    margin-left:auto;
		    margin-right:auto;
		    position:relative;
		    top:0px;
		    width:940px;
		    background-color:rgb(255, 255, 255);
		}
		.Container002 {
		    float:right;
		}