
插值(interporation)
插值相当于解析表达式或者变量,让它们的值替换插值的位置。
注: 不能用于属性值的插值(但属性值可以使用变量替换)。
- 在css属性名中使用插值
 
  | 
  | 
转化:123div {  border-radius: 10px;}
- 在选择器中使用插值
 
  | 
  | 
转化:123div {  border-radius: 10px;}
  | 
  | 
转化:12345#foo,#bar,.baz {  background: #000;}
高级使用:与mixins配合使用
  | 
  | 
转化12345button {  -webkit-border-radius: 1px 2px / 3px 4px;  -moz-border-radius: 1px 2px / 3px 4px;  border-radius: 1px 2px / 3px 4px;}
高级使用:与循环迭代(iteration)配合使用
  | 
  | 
转化:123456789101112131415table tr:nth-child(1) {  height: 10px;}table tr:nth-child(2) {  height: 20px;}table tr:nth-child(3) {  height: 30px;}table tr:nth-child(4) {  height: 40px;}table tr:nth-child(5) {  height: 50px;}
QUOTE: If you are not moving ahead , you are falling behind.