Skip to content

An Ant task that makes use of Prefixr API for converting CSS3 attributes to the corresponding vendor specific syntax

Notifications You must be signed in to change notification settings

Sh33pman/PrefixrAntTask

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Project Name: PrefixrAntTask
Date Initiated: 08 February 2011

Intorduction

This project is the creation of an Apache Ant task for use of the Prefixr api (http://prefixr.com/). It will 
allow developers to make use of css3 styles and replace these with the correct prefix at build/deploy time.

It will allow for a user to set multiple filesets to be scanned for css content and call the Prefixr Api to prefix 
the CSS3 styles with the cross browser spesific styles.

For example a css file containing the following styles

.class {
  border-radius: 5px;
}

will be converted to 

.class{
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
	border-radius: 5px;
}

About

An Ant task that makes use of Prefixr API for converting CSS3 attributes to the corresponding vendor specific syntax

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%