代码:
<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人物外流?
我希望它完全停止写字符
因为我只需要这个
的高度和宽度或:我如何仅从其大小拉出来?
答案 0 :(得分:1)
正如Sergio所提到的,您可以将height: auto
添加到元素的样式中,而不是将其设置为固定高度。
但是,如果要求使用固定高度的元素,则可以将overflow-y: scroll
添加到.moti
样式中,只有在其内容超出容器时才会为您提供垂直滚动条。高度。