Bei dem Versuch, meine SCSS Import einige Schriften habe ich folgendes festgestellt:@include font-face SCSS Ausgabe
ich genau the docs from the compass website kopiert, aber wenn die CSS kompiliert wird ergänzt Compass Zufallszahlen hinter meinem src
URLs. Der Code SCSS Ich schrieb und die resultierende CSS sieht wie folgt aus
SCSS
@include font-face("NexaBold", font-files("nexa_bold-webfont.woff", "nexa_bold-webfont.ttf", "nexa_bold-webfont.svg", "nexa_bold-webfont.eot"));
Resultierende CSS
@font-face {
font-family: "NexaBold";
src: url('/fonts/nexa_bold-webfont.woff?1417439024') format('woff'), url('/fonts/nexa_bold-webfont.ttf?1417439024') format('truetype'), url('/fonts/nexa_bold-webfont.svg?1417439024') format('svg'), url('/fonts/nexa_bold-webfont.eot?1417439024') format('embedded-opentype');
}
Dank!
möglich Duplikat [Wie der Hash entfernen aus den von Compass generierten Sprite-Bilddateinamen?] (http://stackoverflow.com/questions/9183133/how-to-remove-the-hash-from-compasss-generated-sprite-image-filenames) (Hinzufügen von Zufallszahlen zu Quell-URLs) von Compass heißt "Cache Busting" und wird für verschiedene Quellen verwendet, nicht nur für Schriften.) – hon2a