Two Divs Side By Side

by dgoodw01

HTML

<div class='MyImage'>
</div>
  <div class='MyText'>
    My text line one. 
    My text line two. 
    My text line three. 
    My text line four.
  </div>

CSS

.MyText {
  width: 125px;
  height: 100px;
  float:left;
}

.MyImage {
  float:left;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-image:...