I try to understand the generated code via Squirrel, here is the output:
@font-face {
font-family: 'someFont';
src: url('someFont.eot');
src: url('someFont.eot?#iefix') format('embedded-opentype'),
url('someFont.woff') format('woff'),
url('someFont.ttf') format('truetype'),
url('someFont.svg#someFont') format('svg');
font-weight: normal;
font-style: normal;
}
I don't understand why the first src: url('someFont.eot');
is even required, I do understand the IE problem so I understand the requirement for: src: url('someFont.eot?#iefix') format('embedded-opentype'),
but what is the reason for the first src
?
And last thing to note what is the reason for #someFont
after someFont.svg
is it needed to prevent some kind of bug?