JSFiddle - React, Tailwind, and code Playground

by borisjavier

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:relative;
	left:0;
	height:400px;
	
}
#slider img {
	width:100%;
}

#content {
    position:relative;
}

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