Skip to content

Instantly share code, notes, and snippets.

@andyedinborough
Forked from jamesfoster/gist:450728
Created June 24, 2010 02:38
Show Gist options
  • Save andyedinborough/450898 to your computer and use it in GitHub Desktop.
Save andyedinborough/450898 to your computer and use it in GitHub Desktop.

in your html

site.less .opacity { opacity: 0.5 }

 .corners {
      border-radius: 3px;
 }

rendered as site.css .opacity { opacity: 0.5; -moz-opacity: 0.5; filter: alpha(opacity=50); }

 .corners {
      border-radius: 3px;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment