Skip to content

pandao/prefixes.scss

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
June 19, 2015 10:05
June 19, 2015 10:05
src
June 19, 2015 10:05
June 19, 2015 10:05
June 19, 2015 10:05
February 24, 2015 13:40
July 4, 2018 10:54
June 19, 2015 10:05
June 19, 2015 10:05

Prefixes.scss

CSS(3) prefixes mixins library for Sass/Scss, Custom you need CSS prefixes.

Install

NPM install:

bower install prefixes.scss --save-dev

Bower install :

bower install prefixes.scss

Download :

Example

Scss:

@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; 
}

Changes

Change logs

References

License

The MIT license.

Copyright (c) 2015 - 2018 Pandao