Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to display user entered text into a fixed size div. What i want is for the font size to be automatically adjusted so that the text fills the box as much as possible.

So - If the div is 400px x 300px. If someone enters ABC then it's really big font. If they enter a paragraph, then it would be a tiny font.

I'd probably want to start with a maximum font size - maybe 32px, and while the text is too big to fit the container, shrink the font size until it fits.

share|improve this question
20  
Probably the one most amazing features that should of been added to HTML5/CSS3 without the need for JS. – John Magnolia Sep 5 '12 at 17:44

7 Answers

up vote 65 down vote accepted

Thanks Attack. I wanted to use jQuery.

You pointed me in the right direction, and this is what I ended up with:

Here is a link to the plugin: http://plugins.jquery.com/project/TextFill

;(function($) {
    $.fn.textfill = function(options) {
        var fontSize = options.maxFontPixels;
        var ourText = $('span:visible:first', this);
        var maxHeight = $(this).height();
        var maxWidth = $(this).width();
        var textHeight;
        var textWidth;
        do {
            ourText.css('font-size', fontSize);
            textHeight = ourText.height();
            textWidth = ourText.width();
            fontSize = fontSize - 1;
        } while ((textHeight > maxHeight || textWidth > maxWidth) && fontSize > 3);
        return this;
    }
})(jQuery);

$(document).ready(function() {
    $('.jtextfill').textfill({ maxFontPixels: 36 });
});

and my html is like this

<div class='jtextfill' style='width:100px;height:50px;'>
    <span>My Text Here</span>
</div>

This is my first jquery plugin, so it's probably not as good as it should be. Pointers are certainly welcome.

share|improve this answer
I actually just cleaned it up and packaged it as a plugin available from jquery.com at plugins.jquery.com/project/TextFill – GeekyMonkey Mar 27 '09 at 16:39
@GeekyMonkey, did you pull the plugin? Just followed a dupe link to this page, and thought I'd have a look, but the jQuery.com links to your site return 404. – David Thomas Dec 6 '10 at 21:21
Note: I found that for some reason this plugin works only when the div ($('.jtextfill') in above example) is part of root document. It looks like .width() returns zero when the div is embedded inside other divs. – Jayesh Feb 11 '11 at 4:31
It shouldn't return zero for width. Is the element hidden at that point? Maybe you're calling it too early. – GeekyMonkey Feb 17 '11 at 20:58
1  
The "while" line on that loop looks wrong to me -- there should be parentheses around the "||" subexpression. The way it's written now, the font size minimum is only checked when the width is too large, not the height. – Pointy Mar 7 '11 at 16:06
show 3 more comments

I didn't find any of the previous solutions to be adequate enough due to bad performance, so I made my own that uses simple math instead of looping. Should work fine in all browsers as well.

According to this performance test case it is much faster then the other solutions found here.

(function($) {
    $.fn.textfill = function(maxFontSize) {
        maxFontSize = parseInt(maxFontSize, 10);
        return this.each(function(){
            var ourText = $("span", this),
                parent = ourText.parent(),
                maxHeight = parent.height(),
                maxWidth = parent.width(),
                fontSize = parseInt(ourText.css("fontSize"), 10),
                multiplier = maxWidth/ourText.width(),
                newSize = (fontSize*(multiplier-0.1));
            ourText.css(
                "fontSize", 
                (maxFontSize > 0 && newSize > maxFontSize) ? 
                    maxFontSize : 
                    newSize
            );
        });
    };
})(jQuery);

If you want to contribute I've added this to Gist.

share|improve this answer
Nice script, but I think the OP is looking to fill the entirety of the text box, rather than just fitting a single line of text horizontally. Seems like that's what the Fiddle in your Gist link does. – Jon Nov 2 '11 at 20:31
1  
@Jon, thanks! You are right that my script doesn't do multiple lines, but then again the OP didn't specifically ask for that so your assumption might be wrong. Also, that kind of behavior doesn't make much sense imo. I guess the best way to add multi-line support would be to split the string based on the amount of words and then calculate each part with the above script and it would most likely be faster anyway. – Marcus Ekwall Nov 7 '11 at 8:05
Yeah, you're totally right — the OP's question is a little ambiguous. Didn't mean to jump to a conclusion so fast. For anyone looking for multiline support, I had success with sandstrom's code above. Otherwise, for single-line text, this is a great solution :) – Jon Nov 7 '11 at 20:22
3  
@Jon, I played around a little with multiline textfill and ended up with this solution. sandstorm's method is most likely more accurate but this one is faster ;) – Marcus Ekwall Nov 14 '11 at 15:43
1  
Here is a version with minimum font size as well as maximum: gist.github.com/1714284 – Jess Telford Feb 1 '12 at 1:07
show 4 more comments

This probably isn't very elegant, but maybe we can refine it together:

<html>
<head>
<style type="text/css">
    #dynamicDiv
    {
	background: #CCCCCC;
	width: 300px;
	height: 100px;
	font-size: 64px;
	overflow: hidden;
    }
</style>

<script type="text/javascript">
    function shrink()
    {
    	var textSpan = document.getElementById("dynamicSpan");
    	var textDiv = document.getElementById("dynamicDiv");

    	textSpan.style.fontSize = 64;

    	while(textSpan.offsetHeight > textDiv.offsetHeight)
    	{
    		textSpan.style.fontSize = parseInt(textSpan.style.fontSize) - 1;
    	}
    }
</script>

</head>
<body onload="shrink()">
    <div id="dynamicDiv"><span id="dynamicSpan">DYNAMIC FONT</span></div>
</body>
</html>
share|improve this answer
5  
+1 team work =) – sova Aug 5 '11 at 9:03
I found this worked better with offsetWidth, I also had to create a variable for size and then append the px textSpan.style.fontSize = size+"px"; – Wezly Jun 21 '12 at 14:16

This is based on what GeekyMonkey posted above, with some modifications.

; (function($) {
/**
* Resize inner element to fit the outer element
* @author Some modifications by Alexander Sandstorm
* @author Code based on earlier works by Russ Painter (WebDesign@GeekyMonkey.com)
* @version 0.2
*/
$.fn.textfill = function(options) {

    options = jQuery.extend({
        maxFontSize: null,
        minFontSize: 8,
        step: 1
    }, options);

    return this.each(function() {

        var innerElements = $(this).children(':visible'),
            fontSize = options.maxFontSize || innerElements.css("font-size"), // use current font-size by default
            maxHeight = $(this).height(),
            maxWidth = $(this).width(),
            innerHeight,
            innerWidth;

        do {

            innerElements.css('font-size', fontSize);

            // use the combined height of all children, eg. multiple <p> elements.
            innerHeight = $.map(innerElements, function(e) {
                return $(e).outerHeight();
            }).reduce(function(p, c) {
                return p + c;
            }, 0);

            innerWidth = innerElements.outerWidth(); // assumes that all inner elements have the same width
            fontSize = fontSize - options.step;

        } while ((innerHeight > maxHeight || innerWidth > maxWidth) && fontSize > options.minFontSize);

    });

};

})(jQuery);
share|improve this answer
difference is that it can take multiple child elements, and that it takes padding into account. Uses font-size as the default maximum size, to avoid mixing javascript and css. – sandstrom Nov 8 '09 at 14:59
2  
This is great, but how do I use it? I do $('.outer').textfill(); and I get no change. – Drew Baker Mar 13 '11 at 21:21
Thanks, this is a very nice implementation. One thing I ran into: if you are dealing with very long text strings and very narrow containers, the text string will stick out of the container, but the outerWidth will still be calculated as if it doesn't. Toss "word-wrap: break-word;" into your CSS for that container, it will fix this issue. – Jon Nov 5 '11 at 1:45

I had exactly the same problem with my website. I have a page that is displayed on a projector, on walls, big screens..

As I don't know the max size of my font, I re-used the plugin above of @GeekMonkey but incrementing the fontsize :

$.fn.textfill = function(options) {
        var defaults = { innerTag: 'span', padding: '10' };
        var Opts = jQuery.extend(defaults, options);

        return this.each(function() {
            var ourText = $(Opts.innerTag + ':visible:first', this);
            var fontSize = parseFloat(ourText.css('font-size'),10);
            var doNotTrepass = $(this).height()-2*Opts.padding ;
            var textHeight;

            do {
                ourText.css('font-size', fontSize);
                textHeight = ourText.height();
                fontSize = fontSize + 2;
            } while (textHeight < doNotTrepass );
        });
    };
share|improve this answer
+1 for being the only plugin on this page that actually worked for me! – skybondsor Oct 28 '11 at 22:40
1  
This plugin crashes the page for me. – Jezen Thomas Sep 21 '12 at 7:33

I forked the script above from Marcus Ekwall: https://gist.github.com/3945316 and tweaked it to my preferences, it now fires when the window is resized, so that the child always fits its container.

share|improve this answer

Here is a version of the accepted answer which can also take a minFontSize parameter.

(function($) {
    /**
    * Resizes an inner element's font so that the inner element completely fills the outer element.
    * @author Russ Painter WebDesign@GeekyMonkey.com
    * @author Blake Robertson 
    * @version 0.2 -- Modified it so a min font parameter can be specified.
    *    
    * @param {Object} Options which are maxFontPixels (default=40), innerTag (default='span')
    * @return All outer elements processed
    * @example <div class='mybigdiv filltext'><span>My Text To Resize</span></div>
    */
    $.fn.textfill = function(options) {
        var defaults = {
            maxFontPixels: 40,
            minFontPixels: 10,
            innerTag: 'span'
        };
        var Opts = jQuery.extend(defaults, options);
        return this.each(function() {
            var fontSize = Opts.maxFontPixels;
            var ourText = $(Opts.innerTag + ':visible:first', this);
            var maxHeight = $(this).height();
            var maxWidth = $(this).width();
            var textHeight;
            var textWidth;
            do {
                ourText.css('font-size', fontSize);
                textHeight = ourText.height();
                textWidth = ourText.width();
                fontSize = fontSize - 1;
            } while ((textHeight > maxHeight || textWidth > maxWidth) && fontSize > Opts.minFontPixels);
        });
    };
})(jQuery);
share|improve this answer
thanks, although I think you've got a semicolon at the top of the code that shouldn't be there – Set Sail Media Mar 8 at 15:39

protected by Community Nov 5 '12 at 16:10

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.