gpt4 book ai didi

html - 显示到固定的html区域

转载 作者:行者123 更新时间:2023-11-28 16:08:57 25 4
gpt4 key购买 nike

在我的 html 中,我从 Controller 得到“响应”。响应中的行数各不相同(最多 3 行)。在我的 html 页面上“保留”3 行的最佳方法是什么,这样下一个带有“SOMETHING”段落的 div 就不会被“response”向下滚动?

<div class="row">
<p ng-bind-html="response"></p>
</div>
<div class="row">
<p>SOMETHING</p>
</div>

最佳答案

使用 CSS,固定 3 行占用的高度,并使用 overflow 在固定高度的 div 内滚动。

CSS Overflow可能对你有帮助。

.row-fixed-height {
高度:150px;
溢出:滚动;
}

在 HTML 中:

<div class="row-fixed-height">
<p ng-bind-html="response"></p></div>

关于html - 显示到固定的html区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32701473/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com