bradrice
5/5/2015 - 1:54 PM

Image replacement extend placeholder

Image replacement extend placeholder

<div class="header">
<div class="logo"><h1 class="title ir">h1.title</h1></div>
<div class="navigation"><p>navigation goes here</p></div>
<div class="social"></div>
</div>
.logo, .social {
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
}

.logo {
  background-image: url(http://i.imgur.com/yYnyJ.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
}

.social {
  background-image: url(http://i.imgur.com/yYnyJ.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
}
// ----
// Sass (v3.4.13)
// Compass (v1.0.3)
// ----

%ir {
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
}	
.logo {
  @extend %ir;
  background-image: url(http://i.imgur.com/yYnyJ.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
}
.social {
  @extend %ir;
  background-image: url(http://i.imgur.com/yYnyJ.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
}

<div class="header">
<div class="logo"><h1 class="title ir">h1.title</h1></div>
<div class="navigation"><p>navigation goes here</p></div>
<div class="social"></div>
</div>