Confluence 上特定文本的 CSS
我想知道是否有一种方法可以在我的 confluence 页面上对某些特定文本使用自定义 css(不使用嵌入式 HTML)。
I am wondering if there is a way to use custom css for some specific text on my confluence page (not using embedded HTML).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
抱歉,这是一个老问题,但为了寻找此问题答案的人们:您可以使用 span 或 div 宏,并使用自定义 css 将您想要的任何样式应用于其内容。
如有必要,您可以创建自定义 div 和 span 类,以允许将多种样式应用于文本选择。
编辑:这是一个 wikimarkup 的示例,您可以使用它来执行此操作,
因此您可以使用 div 类并在汇合空间的自定义 css 中应用样式,或者您可以为 div 使用内联样式。
Sorry this is an old question, but for the sake of people who search for an answer to this question: you can use span or div macros and use the custom css to apply whatever style you want to their contents.
If necessary, you could create custom div and span classes to allow for multiple styles to be applied to selections of text.
EDIT: Here is an example of the wikimarkup you could use to do this
So you can either use the div class and apply a style in the custom css for the confluence space, or you can use an inline style for the div.
您可以执行此操作...
前提是您已将
custom.css
文件存储为附件。显然,您需要将 123456789 替换为实际的附件号。您还可以链接外部站点上的 CSS(使用绝对 URL),但如果您有任何自动 URL 格式,则每次更改文档时往往都会弄乱它。
You can do this ...
That's if you've stored a
custom.css
file as an attachement. You'd obviously need to replace 123456789 with the actual attachment number.You can also link CSS on an external site (with an absolute URL), but if you have any automatic URL formatting, that tends to mess it up everytime you change the document.
我使用一个用户宏来呈现 HTML 中的 $body。然后我可以在 wiki 页面中的用户宏标记内放置我想要的任何 HTML 标记。
I use a User Macro that renders the $body in HTML. Then I can put whatever HTML tags I want in the wiki page within the user macro tag.
可能有一种方法可以达到您想要达到的目标,但缺少(来自您的)一些信息。 confluence 允许的功能如下:
CTRL-U
或类似的内容。在 Chrome 中,页面菜单显示查看页面源代码
。~subscript~
。subscript
。There could be a way to reach what you want to reach, but there is some information missing (from you). What confluence allows is the following:
CTRL-U
or something similar. Here in chrome, the page menu saysView page source
.~subscript~
.<sub>subscript</sub>
.您可以通过
div
和span
宏在 Confluence 页面中指定自定义 CSS。在最新的 Confluence 版本(4.0 及更高版本)中,您可以按如下方式执行此操作:
{div}
或{span}
。输入右大括号 } 时,自动完成功能会将文本转换为宏。You can specify custom CSS in your Confluence page via the
div
andspan
macros.In recent Confluence versions (4.0 and later), you can do this as follows:
{div}
or{span}
. On typing the closing brace }, auto-complete will convert the text to a macro.