SCSS - inherit or include other class properties

0 votes
235 views
added Aug 11, 2017 in SCSS by anonymous
retagged Sep 7, 2018 by LC Marshal
.myclass {
  font-weight: bold;
  font-size: 90px;
}

.myotherclass {
  @extend .myclass;
  color: #000000;
}
lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...