sphinx 中的左对齐表格标题

问题描述 投票:0回答:2

有没有办法在Sphinx输出中左对齐表格标题(使用sphinx_rtd_theme)?

自定义CSS包含在conf.py中:

def setup(app):
    app.add_stylesheet('_static/custom.css')

这正在工作:

.wy-nav-content {
     max-width: none;
 }

这些都不起作用:

.caption {
     align:left
 }    

.caption-text {
     align:left
 }    

可以通过自定义CSS吗?

css python-sphinx read-the-docs
2个回答
0
投票

使用正确的 CSS 语法来对齐文本:

.caption-text {
    text-align: left;
}

0
投票

代码块标题的正确 CSS 选择器是

.rst-content .code-block-caption
:

.rst-content .code-block-caption  {
    text-align: left;
}
© www.soinside.com 2019 - 2024. All rights reserved.