xikaos
3/23/2016 - 2:19 AM

no-more-empty-alts-or-titles.sass

@mixin test-img-alt {
  img {
    border: 2px dotted red;
  }
  img[alt] {
    border: none;
  }
}

@mixin test-link-title {
  a {
    border: 2px dotted #FF0EC9;
  }
  a[title] {
    border:none;
  }

}