Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Sass provides inheritance to accomplish this same result but without spreading your selectors all over the place.

  .uno {
    @extend .dos;
    text-align: center;
  }
  .dos {
    color: green;
    font-size: 18px;
  }


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: