In web development, a preferred list of font is put in font-family of CSS as following sample.
font-family: Roboto, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
I want to know which font is chose by browser to display the content. I know I can manual modify the font in font-family
one by one in browser developer tool and observe the changes of displayed content to identify the font used by browser. But it's too clumsy and require very sharp eyes T_T.
Anyone can know a better way? Thanks very much!
In firefox-developer-tools, Inspector > Fonts tab displays "Fonts used" by the currently inspected element. Edit fonts MDN
In google-chrome-devtools, Elements > Computed tab displays "rendered fonts" for the currently inspected element. "Even if its name isn’t in the font-family list." whats-that-font , Hackernoon
Firefox :-
Chrome :-
Thanks, @xuemind for suggested edit