如何使面板网格内的页面块标题跨越页面块的整个宽度?
我在
中有多个
。
的标题过早换行,我不明白为什么。下面是它的外观示例。
我没有看到标题不应该跨越
。还有其他人吗?我也愿意接受黑客来解决这个问题。
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.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Salesforce 将标题包装在
中,并将其宽度设置为 30%。你可以用一些 css 来覆盖它,比如
Salesforce wraps the title in a
<td>
and sets its width to 30%. You can override this with some css like我会放弃标准的
title="title text"
并使用相同的字体/大小/粗体文本和min-width
样式,以防止其过早换行。I'd ditch the standard
title="title text"
and go with the same font/size/bold text with amin-width
style to protect it from wrapping prematurely.