Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
不知道为什么会这样,但我的display only表单上有一个字段,标签和字段值都显示为粗体。有没有一种简单的方法可以在不应用 CSS 的情况下取消加粗值部分?
display only
没有一个模板选项可以解决这个问题。我相信你需要使用某种 CSS 来做到这一点。在项目级别,可能是:
style="font-weight: normal"
或者对于页面上的所有显示项,您可以在页面的内联 CSS 中添加此 CSS 片段:
.apex-item-display-only {font-weight: normal}