Important facts about commercial licenses

  • Licenses are perpetual. They do not expire and do not need to be renewed.
  • Licenses can be upgraded. You can upgrade to a more expensive license later paying only the difference in cost.
  • Pay attention to the distribution type - Hosted (sites / servers), binary (applications) or source (includes all the others). Choose according to your needs (more below).
  • All licenses allow commercial use unless otherwise indicated.
  • Read the full license by clicking on the icon.
  • Read more about licenses in our handy license guide.
Free

Apache License, 2.0

The Apache License, 2.0 is an
open-source license.
$4

Developer License

Unlimited projects Source and binary distribution
You need to log-in or create an account
  • Create an account
  • Log-in
  • Please use your real name.
  • Account activation link will be sent to this address.
  • Minimum 8 characters

Clicking this button confirms you read and agreed to the terms of use and privacy policy.

  • Released: Jan 27, 2011
    Last Update: Jan 27, 2011
  • Language: Python

CSSPrefixer

CSSPrefixer
Developed by Grigory Volkov, Released Jan 27, 2011

A tool that rewrites your CSS files, adding vendor-prefixed versions of CSS3 rules.

Python

Tags: contest2011 , css , css3 , stylesheets

A tool that rewrites your CSS files, adding vendor-prefixed versions of (popular) CSS3 rules. It also can combine and minify your stylesheets. Keep your styles clean!

It supports many CSS3 stuff including Flexbox, but not Gradients yet.

For example, this

#wrapper {
    border-radius: 1em;
    transform: rotate(45deg)
}

becomes this:

#wrapper {
    border-radius: 1em;
    transform: rotate(45deg);
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg)
}

Requires cssutils.

Back to top

Usage

From console:

$ cssprefixer my1.css my2.css --minify > result.css

From Python:

import cssprefixer
cssprefixer.process(open('my.css').read(), debug=False, minify=True)

From Django, Flask or any other Python web framework: Latest git version of webassets has a filter for cssprefixer.

User Reviews

No reviews have been submitted yet.

Questions & Comments


Or enter your name and Email
No comments have been posted yet.
You must be logged-in to vote. Log-in to your account or register now.