如何停止在div中包装字符?要么

时间:2014-07-30 23:13:30

标签: javascript jquery html css

代码:

<div class="moti" id="content">
    Hello World ! What's up ??? What ??!
</div>
<script>
    Aloha.ready( function() {
        Aloha.jQuery('#content').aloha();
    });
</script>

下面:

HTTP:http://oo.netii.net/bootstrap/index.php

如何阻止DIV人物外流?

我希望它完全停止写字符

因为我只需要这个

的高度和宽度

或:我如何仅从其大小拉出来?

1 个答案:

答案 0 :(得分:1)

正如Sergio所提到的,您可以将height: auto添加到元素的样式中,而不是将其设置为固定高度。

但是,如果要求使用固定高度的元素,则可以将overflow-y: scroll添加到.moti样式中,只有在其内容超出容器时才会为您提供垂直滚动条。高度。

Here's a JSFiddle to demonstrate