JSFiddle - React, Tailwind, and code Playground

by Manuel Souto Pico

HTML

<div id="slider">
<img src="http://oi43.tinypic.com/25k319l.jpg"  />
</div>
<div id="content">
<div id="text">
    samplle text
    </div>
</div>

CSS

#slider {
	position:absolute;
	left:0;
	height:200px;
    border-style:solid;
    border-width:5px;
    border-color:green;
	
}
#slider img {
	width:100%;
}

#content {
    position:relative;
}

#content #text {
	
	width:950px;
	height:215px;
    color:red;
}