HI,
I came across the following font-family in a css rule :
body{ /* Font */ font-family: sans-serif, Arial, Verdana, "Trebuchet MS"; font-size: 12px; /* Text color */ color: #333; /* Remove the background color to make it transparent */ background-color: #fff; margin: 20px;}
what does it mean by specifying font-family as font-family: sans-serif, Arial, Verdana, "Trebuchet MS";
As i read sans-serif is a generic family.... and if the browser supports it will this only be applied and rest of them being ignored totally ?
Also on https://developer.mozilla.org/en/docs/Web/CSS/font-family
its mentioned that : A generic font family should be the last item in the list of font family names
why is that so ?