[Solved] How to make div with text and icon right [closed]


I hope this is what you want.

#red {
width:500px;
  height:100px;
  padding:20px;
  background-color:#f70c1e;
  color:white;
  line-height:100px;
  font-size:40px;
  font-family:sans-serif;
  text-align:center;
  
}
img{
float:right;
}
<div id="red"> Yada yada .
  <img src="http://content.nike.com/content/dam/one-nike/en_us/season-2012-su/open-graph/onenike_homepage_v1_opengraph_100x100.jpg" alt="">
  </div>

solved How to make div with text and icon right [closed]