我想为不同的浏览器提供不同的字体(见这个问题)。
有没有一种巧妙的方法可以用 Sass/Bourbon 做到这一点?
这是我到目前为止所拥有的:
<!--[if IE]> -->
@include font-face("myicons", "myicons", $weight: normal, $style: normal,
$asset-pipeline: false);
<![endif]-->
<!--[if !IE]> -->
@include font-face("myicons", "myicons", $weight: normal, $style: normal,
$asset-pipeline: true);
<![endif]-->