Adding an icon to a button

by Rykus0

HTML

<p>
    In this second example, 
    <a href="#"><img src="http://lorempixel.com/15/15/" />mo</a> 
    muh...
</p>

CSS

a img{
  /* vertically centers the image to the line-height */
  vertical-align:middle;
  
  width:15px;
  height:15px;
  
  margin-right:.25em;
}
a{
  padding:.25em;
  background:#E4EDF7;
  border: 1px solid #C3D6EA;
  border-radius:.25em;
  font-weight:bold;
  color:#074F98;
  text-decoration:none;
}
p{
  line-height:2.5; /* Show the whole button */
}