zooming font-size threshold

Zoom out the page and see which font sizes keep at the minimum legible font-size threshold

by desandro

CSS

body { font-family: 'Helvetica'; }

JavaScript

$(function(){

    var i = 20, 
        fs, 
        content = '';
    
    while (i--) {
        fs = 'font-size: ' + i + 'px';
        content += '<p style="' + fs + '">Hamburgerfonts. ' + fs + '</p>';
    }

    $('body').append( $(content) );    
    

});