Less Css Drop Shadow


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. .dropShadow(@x:0, @y:0, @blur:0, @color:#444){
  2. box-shadow: @x @y @blur @color;
  3. -o-box-shadow: @x @y @blur @color;
  4. -webkit-box-shadow: @x @y @blur @color;
  5. -moz-box-shadow: @x @y @blur @color;}

URL: http://lostwebdesigns.com

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.