- 授权协议: MIT
- 开发语言: JavaScript HTML/CSS
- 操作系统: 跨平台
- 软件首页: http://letsgetrandy.github.io/DICSS/
- 软件文档: http://letsgetrandy.github.io/DICSS/
软件介绍
DICSS = Directly injected CSS
忘记 SASS 和 LESS CSS 吧,DICSS 就足够了。DICSS 就是 JavaScript,你直接在 JavaScript 中编写 CSS 样式并编译成最终网页上需要的。
示例代码:
DICSS.putIn('body', 'margin: 0');
DICSS.putIn('p', {
"height": "100%",
"width": "100%",
"&.protection": {
"border": "solid 1px transparent"
},
"a": {
"color": "#fff"
}
});
