JSFiddle - React, Tailwind, and code Playground
by Douglas Crosby
HTML
<div id="hold">
<div>Some content<br />Some content Some content<br />Some content Some content Some content
<img src="http://placehold.it/350x150" /></div><div class="aligner"> </div>
</div>
CSS
body{
text-align:center;
}
#hold{
height:400px;
background:#ccc;
border:1px solid #999;
width:75%;
}
div{
display: -moz-inline-stack;
display: inline-block;
zoom: 1;
*display: inline;
vertical-align:middle;
padding:0px;
margin:0px;
border:1px dotted #333;
}
img{
display:block;
}
.aligner{
width:0px;
height:100%;
overflow:hidden;
border:none;
}