mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
16 lines
267 B
CSS
16 lines
267 B
CSS
@font-face {
|
|
--a: MyTestFontName;
|
|
font-family: var(--a);
|
|
src: url(../../../../fonts/Ahem.ttf);
|
|
}
|
|
@font-face {
|
|
font-family: MyTestFontName2;
|
|
src: url(../../../../fonts/Ahem.ttf);
|
|
}
|
|
#a {
|
|
font-family: MyTestFontName;
|
|
}
|
|
#b {
|
|
font-family: MyTestFontName2;
|
|
}
|