gpt4 book ai didi

gwt - 如何在 GWT 标签中换行很长的文本行?

转载 作者:行者123 更新时间:2023-12-04 23:32:47 25 4
gpt4 key购买 nike

这是目前我的代码的摘录:

VerticalPanel mainPanel = new VerticalPanel();
RootPanel.get("messages").add(mainPanel);

HorizontalPanel tempPanel = new HorizontalPanel();
tempPanel.setSize("100px", "200px");

Label content = new Label("AAAveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryverylongtextZZZ");
content.setWidth("50px");
content.setWordWrap(true);

tempPanel.add(content);
mainPanel.add(tempPanel);

标签显示但不换行。
如果我插入一个空格,似乎自动换行有效,但我想我想要字符换行。
有任何想法吗?

我不想要水平滚动条。

最佳答案

这实际上更像是一个 CSS 问题,而不是一个 GWT 问题。 setWordWrap()通常用于在 div 上取消自动换行 -- 自动换行(在空格上)是默认设置。

您想要做的是向显示 { word-wrap: break-word; } 的标签添加一些 CSS。

更多信息 here .

关于gwt - 如何在 GWT 标签中换行很长的文本行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2691459/

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