Include More.less with your Less CSS
@import 'More.less';
Let's write some more LESS
.background-gradient(#000000, #ffffff);
/* Creates the following code */
background: #000000; /* Fallback */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#000000,endColorstr=#ffffff); /* Internet Explorer */
background: -moz-linear-gradient(top, #000000, #ffffff); /* Firefox */
background: -ms-linear-gradient(top, #000000, #ffffff); /* Internet Explorer 9 */
background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#ffffff)); /* Safari and Chrome */
The complete list of functionalities can be found in the More.less file.