将DIV收缩到包裹到其最大宽度的文本?

时间:2013-01-30 03:31:01

标签: javascript html css

将div包装成一些文本非常简单。但是如果由于最大宽度(作为示例)文本换行到第二行(或更多行),那么DIV的大小不会缩小到新包装的文本。它仍然扩展到断点(在这种情况下为最大宽度值),在DIV的右侧产生相当大的余量。当想要使这个DIV居中以使包裹的文本看起来居中时,这是有问题的。它不会,因为DIV不会收缩到多行文本。一种解决方案是使用合理的文本,但这并不总是实用的,并且结果可能是可怕的,文字之间存在较大的差距。

我知道没有解决方法将DIV缩小为纯CSS中的包装文本。所以我的问题是,如何通过Javascript实现这一目标?

这个jsfiddle说明了它:jsfiddle。由于最大宽度,这两个词几乎没有换行,但是DIV不会缩小到新包装的文本,留下一个令人讨厌的右边缘。我想消除这一点并让DIV重新调整到包装文本大概使用Javascript(因为我不相信纯CSS中存在解决方案)。

.shrunken {text-align: left; display: inline-block; font-size: 24px; background-color: #ddd; max-width: 130px;}

<div class="shrunken">Shrink Shrink</div>

4 个答案:

答案 0 :(得分:5)

这不是最漂亮的解决方案,但应该做到这一点。逻辑是计算每个单词的长度,并使用它来计算在被强制换行之前最适合的行是什么;然后将该宽度应用于div。在这里小提琴:http://jsfiddle.net/uS6cf/50/

示例html ...

<div class="wrapper">
    <div class="shrunken">testing testing</div>
</div>

<div class="wrapper">
    <div class="shrunken fixed">testing testing</div>
</div>

<div class="wrapper">
    <div class="shrunken">testing</div>
</div>

<div class="wrapper">
    <div class="shrunken fixed">testing</div>
</div>

<div class="wrapper">
    <div class="shrunken" >testing 123 testing </div>
</div>

<div class="wrapper">
    <div class="shrunken fixed" >testing 123 testing </div>
</div>

和javacript(依赖于jQuery)

$.fn.fixWidth = function () {
    $(this).each(function () {
        var el = $(this);
        // This function gets the length of some text
        // by adding a span to the container then getting it's length.
        var getLength = function (txt) {
            var span = new $("<span />");
            if (txt == ' ')
                span.html('&nbsp;');
            else
                span.text(txt);
            el.append(span);
            var len = span.width();
            span.remove();
            return len;
        };
        var words = el.text().split(' ');
        var lengthOfSpace = getLength(' ');
        var lengthOfLine = 0;
        var maxElementWidth = el.width();
        var maxLineLengthSoFar = 0;
        for (var i = 0; i < words.length; i++) {
            // Duplicate spaces will create empty entries.
            if (words[i] == '')
                continue;
            // Get the length of the current word
            var curWord = getLength(words[i]);
            // Determine if adding this word to the current line will make it break
            if ((lengthOfLine + (i == 0 ? 0 : lengthOfSpace) + curWord) > maxElementWidth) {
                // If it will, see if the line we've built is the longest so far
                if (lengthOfLine > maxLineLengthSoFar) {
                    maxLineLengthSoFar = lengthOfLine;
                    lengthOfLine = 0;
                }
            }
            else // No break yet, keep building the line
                lengthOfLine += (i == 0 ? 0 : lengthOfSpace) + curWord;
        }
        // If there are no line breaks maxLineLengthSoFar will be 0 still. 
        // In this case we don't actually need to set the width as the container 
        // will already be as small as possible.
        if (maxLineLengthSoFar != 0)
            el.css({ width: maxLineLengthSoFar + "px" });
    });
};

$(function () {
    $(".fixed").fixWidth();
});

答案 1 :(得分:0)

我想这就是你在考虑的问题,可以在css中完成:

div {
    border: black solid thin;
    max-width: 100px;
    overflow: auto;
}

您可以在此处查看:http://jsfiddle.net/5epS4/

答案 2 :(得分:0)

我迟到了,但我认为这个CSS代码对于遇到同样问题的其他用户非常有用:

div {
  width: -moz-min-content;
  width: -webkit-min-content;
  width: min-content;
}

答案 3 :(得分:-1)

试试这个: https://jsfiddle.net/9snc5gfx/1/

.shrunken {
   width: min-content;
   word-break: normal;
}