开源软件名称:prefixes.scss开源软件地址:https://gitee.com/pandao/prefixes.scss开源软件介绍:Prefixes.scssCSS(3) prefixes mixins library for Sass/Scss, Custom you need CSS prefixes. InstallBower install : bower install prefixes.scss Download : ExampleScss: @import "prefixes";.example { @include clearfix(); @include border-radius(4px); @include box-shadow(0 1px 5px rgba(0, 0, 0, .5));} Sass: @import "../prefixes".example @include clearfix() @include border-radius(4px) @include box-shadow(0 1px 5px rgba(0, 0, 0, .5)) CSS: .example { -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5); -ms-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5); -o-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5); box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5); }.example:before, .example:after { content: " "; display: table; }.example:after { clear: both; } ChangesReferences
LicenseThe MIT license. Copyright (c) 2015 Pandao |
请发表评论