What do you mean, there are mixins for (for example) box-shadow, that
compile to the css3 features with vendor prefixes.

See  http://twitter.github.com/bootstrap/less.html#mixins

// Drop shadows
.box-shadow(@shadow: 0 1px 3px rgba(0,0,0,.25)) {
  -webkit-box-shadow: @shadow;
     -moz-box-shadow: @shadow;
          box-shadow: @shadow;
}

On Wed, Jun 20, 2012 at 9:37 AM, myradon <[email protected]> wrote:

> Is it possible that LESS will generate browser-feature-classes prepend to
> css-selectors with eg. mixins?
>
> I would love to see CSS generated like;
>
> .box-shadow selector {properties;} with Bootstrap/ LESS so not all
> properties are assigned in 1 selector with ie-only filters and/or
> properties for browser which don't support these CSS(3) features. I think
> it's more of a LESS-thing.
>

Reply via email to