25

将 div 收缩到一些文本非常简单。但是,如果文本由于最大宽度(例如)而换行到第二行(或更多),则 DIV 的大小不会缩小到新换行的文本。它仍然扩展到断点(在本例中为 max-width 值),从而在 DIV 的右侧产生了相当多的边距。当想要将此 DIV 居中以使换行的文本居中时,这是有问题的。不会,因为 DIV 不会缩小为换行的多行文本。一种解决方案是使用两端对齐的文本,但这并不总是实用的,而且单词之间的间隔很大,结果可能很可怕。

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

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

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

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

4 回答 4

8

这不是最漂亮的解决方案,但它应该可以解决问题。逻辑是计算每个单词的长度,并用它来计算在强制换行之前最长的行是多少;然后将该宽度应用于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();
});
于 2013-01-30T06:27:00.780 回答
5

我有点晚了,但我认为这段 CSS 代码对其他有同样问题的用户很有用:

div {
  width: -moz-min-content;
  width: -webkit-min-content;
  width: min-content;
}
于 2015-08-14T14:52:36.157 回答
-1

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

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

你可以在这里看到它:http: //jsfiddle.net/5epS4/

于 2013-01-30T03:49:36.440 回答
-2

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

.shrunken {
   width: min-content;
   word-break: normal;
}
于 2021-04-12T12:20:08.037 回答