/ Published in: CSS
URL: http://lostwebdesigns.com
Expand |
Embed | Plain Text
.dropShadow(@x:0, @y:0, @blur:0, @color:#444){ box-shadow: @x @y @blur @color; -o-box-shadow: @x @y @blur @color; -webkit-box-shadow: @x @y @blur @color; -moz-box-shadow: @x @y @blur @color;}
Comments
Subscribe to comments
You need to login to post a comment.

Use as follow in your style.less file
.example{ .dropShadow(1px, 1px, 1px, #444); }