如何使手写笔更高效

时间:2017-04-05 23:56:34

标签: css stylus

我有以下代码,并希望如何在手写笔中执行此操作

CSS

h1 {
    font-size: 36px
}
h2 {
    font-size: 32px
}
h3 {
    font-size: 28px
}
h4 {
    font-size: 24px
}
h5 {
    font-size: 20px
}
h6 {
    font-size: 16px
}

手写笔

for num in (1..6)
    h-{num}
        font-size 32px

首先是在标题中循环,然后是鼻子,因为我会为字体大小做另一个循环

1 个答案:

答案 0 :(得分:1)

size= 36px 32px 28px 24px 20px 16px
for num,$s in  size
    h{$s+1} num

点击here进行演示