I have a select element in my web page, and I've customized the font using CSS:
@font-face {
font-family: myFont;
src: url('myFont.woff');
}
body select{
font-family: myFont;
}
After testing in Chrome, Firefox, and IE, the font displays correctly. However, in Safari version 9.0.2, the font is lost when the select element is clicked.
I used WhatFont to inspect it, and the results were as follows:
https://i.sstatic.net/bSe5g.png
It seems like the font -apple-system - regular is replacing my custom font.
Is this a common issue in Safari?
Is there a solution to this problem?