Skip to content

Instantly share code, notes, and snippets.

@dandelionmood
Created March 28, 2011 19:39
Show Gist options
  • Save dandelionmood/891114 to your computer and use it in GitHub Desktop.
Save dandelionmood/891114 to your computer and use it in GitHub Desktop.
Package CSS3 pour Less
/**
* Définition du package CSS3
*/
#css3 {
/**
* Arrondir les angles de la boîte
* @param paramètres classiques du border-radius
*/
.border-radius( @p ) {
-moz-border-radius: @p;
-webkit-border-radius: @p;
border-radius: @p;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment