cssdream / cssgrace

从今天起,写简单优雅面向未来的 CSS。From now on,writing brief,elegant,future-oriented CSS.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

多余的hack

gucong3000 opened this issue · comments

audio, canvas, progress, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

这样的CSS代码,会输出为

audio, canvas, progress, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  *display: inline;
  *zoom: 1;
}

建议在插入hack语句前先检查一下是否已有hack

好的!

#21
曾有个pr,我倒是有兴趣修复

已修复#44
亲,麻烦review下代码哦。