Quantcast
Channel: User Walter Rumsby - Stack Overflow
Viewing all articles
Browse latest Browse all 39

Answer by Walter Rumsby for Cross-Browser CSS3 Rule

$
0
0

Compass provides Sass mixins for many CSS3 properties meaning you can write something like:

.foo {    @include border-radius(4px, 4px);}

which will generate the following CSS:

.foo {    -webkit-border-radius: 4px 4px;    -moz-border-radius: 4px / 4px;    -o-border-radius: 4px / 4px;    -ms-border-radius: 4px / 4px;    -khtml-border-radius: 4px / 4px;    border-radius: 4px / 4px;}

This is great because you have to write less code, but it provides rules that target a wide range of browsers.


Viewing all articles
Browse latest Browse all 39

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>