简体   繁体   中英

shorthand properties and method of css

I found someone's jsfiddle containing css like this

float: left;
text:{
    decoration: none;
    shadow: 0 1px 3px rgba(black, .35);
  }

I assume decoration is text-decoration and shadow is text-shadow in text: . I want to know more about it what are the other shorthand properties like decoration inside the text? And what are the shorthand methods like text: ?

From http://sass-lang.com

Sass avoids repetition by nesting selectors within one another. The same thing works with properties.

table.hl {
  margin: 2em 0;
  td.ln {
    text-align: right;
  }
}

li {
  font: {
    family: serif;
    weight: bold;
    size: 1.2em;
  }
}

which compiles to:

/* CSS */

table.hl {
  margin: 2em 0;
}
table.hl td.ln {
  text-align: right;
}

li {
  font-family: serif;
  font-weight: bold;
  font-size: 1.2em;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM