is such css library that i can use rather than have to manually use special tag for each browsers like below ?
-moz-linear-gradient
-webkit-gradient
-ms-filter: "progid:DXImageTransform.Microsoft.gradient
is such css library that i can use rather than have to manually use special tag for each browsers like below ?
-moz-linear-gradient
-webkit-gradient
-ms-filter: "progid:DXImageTransform.Microsoft.gradient
I personally don't know of any, but you could set up your CSS files to be parsed with PHP, and then write a function that outputs everything you need. Example:
<?php
function makeBorderRadius($radius) {
echo "-moz-border-radius: " . $radius . "\n";
echo "-webkit-border-radius: " . $radius . "\n";
echo "border-radius: " . $radius . "\n";
}
?>
#mydiv {
width: 50%;
background: #000;
<?php makeBorderRadius(5); ?>
}