JSFiddle - React, Tailwind, and code Playground
by adamh
HTML
<div id="wrap">
<div class="testimonial">
<img class="client" src="http://farm5.staticflickr.com/4075/4793622407_0ff6b45727_q.jpg" />
<div class="content">Your knowledge and recommendations have been invaluable but more importantly they way you deal with people is superb, so friendly, patient, not pushy and a total pleasure!</div>
</div>
<div class="meta">
<span class="client">Mr & Mrs D</span> travelled to <span class="destination">Thailand</span> with <span class="cs">Jack</span>
</div>
</div>
CSS
body {
background: #f0f0f0;
text-align: center;
padding: 20px;
font-family: HelveticaNeue, Helvetica, Arial;
font-size: 82.5%;
line-height: 1.4em;
}
#wrap {
margin: 0 auto;
text-align: left;
width: 460px;
border: 1px solid #eee;
}
.testimonial {
background: white;
border-radius: 4px;
height: 1%;
overflow: auto;
}
.content {
font-style: italic;
padding: 15px 10px 10px 10px;
font-size: larger;
line-height: 1.5em;
}
img.client {
float: left;
margin-right: 10px;
}
.meta {
padding: 10px 20px;
text-align: center;
}
.meta span {
font-weight: bold;
color: #37c;
}