Hacker News new | ask | show | jobs
by windows2020 1177 days ago
It's absolutely inheritance.

  .animal {
    font-weight: bold;
  }
    .animal.bear {
      color: brown;
    }

  <div class="animal bear">...</div>