which font is used on stackoverflow for code snippets?
Ex:
var $div = $("#preloader");
$.each($.imgNames, function (i, val) {
$("<img />").attr("src", $.largePath + val).addClass('PRELOADED').appendTo($div);
});
|
which font is used on stackoverflow for code snippets? Ex:
|
|||
|
|
|
It depends what fonts are available on your system, but the list (in order of priority) is: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif You can see this by inspecting one of the
For more information on how that CSS behaves, you could look at the CSS Fonts module specification. |
|||
|
|