Separating Stylus CSS Defintiions With Semicolons

110 views Asked by At

Is it possible to separate Stylus definitions with semicolons?

Eg:

div.somclass
    color blue; height 20px; border 1px solid blue;
1

There are 1 answers

0
Panya On BEST ANSWER

Yep, see http://codepen.io/anon/pen/pJWzzw (view compiled CSS)

div.somclass {
  color: #00f;
  height: 20px;
  border: 1px solid #00f;
}