如何使面板网格内的页面块标题跨越页面块的整个宽度?

发布于 2025-01-05 20:26:47 字数 365 浏览 0 评论 0原文

我在 中有多个 的标题过早换行,我不明白为什么。下面是它的外观示例。

pageblock_title_wrapping_exapmle

我没有看到标题不应该跨越 。还有其他人吗?我也愿意接受黑客来解决这个问题。

I have multiple <apex:pageblock>s in an <apex:panelgrid>. The title of the <apex:pageblock>s wraps prematurely, and I can't figure out why. Here's an example of what it looks like.

pageblock_title_wrapping_exapmle

I don't seen any reason why the title shouldn't span the entire width of the <apex:pageblock>. Anyone else? I'm also open to hacks to get around the issue.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑脸一如从前 2025-01-12 20:26:47

Salesforce 将标题包装在 中,并将其宽度设置为 30%。你可以用一些 css 来覆盖它,比如

td.pbTitle {
    width: 60%;
}

Salesforce wraps the title in a <td> and sets its width to 30%. You can override this with some css like

td.pbTitle {
    width: 60%;
}
那请放手 2025-01-12 20:26:47

我会放弃标准的 title="title text" 并使用相同的字体/大小/粗体文本和 min-width 样式,以防止其过早换行。

I'd ditch the standard title="title text" and go with the same font/size/bold text with a min-width style to protect it from wrapping prematurely.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文