Closed
Description
Please remove the replacement
'font-weight': function (value) {
if (value == 'normal')
return '400';
else if (value == 'bold')
return '700';
else
return value;
});
It is not right.
I can use a font with a different weight:
@font-face {
font-family: 'Abc';
src: local('Abc'),
url('http://.../Abc.woff') format('woff'); <---- light 300
font-weight: normal; <---- as normal
}
div {
font-family: Abc;
font-weight: normal; <---- now normal is font's weight
}
Metadata
Metadata
Assignees
Labels
No labels