css3 / sass style record

css3

width: calc(50% - 10px)

 

sass

1, the parity line

.classNameA {
  background:red;
  &:nth-child(even) {
    background:green;
  }
}

 

Guess you like

Origin www.cnblogs.com/liujinyu/p/11573547.html