This post說以下指令是一種對齊圖像的方法。如何將圖像與reRestructuredText居中對齊?
.. image:: ./imgs/code.jpg
:width: 400px
:align: center
但是,圖像不是中心對齊,而是右對齊,我看到如下生成的HTML。
<img alt="./imgs/code.jpg" class="align-center" src="./imgs/code.jpg" style="width: 400px;" />
它定義爲對齊中心級相反的解釋:「屬性‘’圖像的比對,相當於HTML標籤的」對齊
我甚至嘗試過使用CSS。
.. raw:: html
<style type="text/css">
.align-center {
text-align: center;
border: 0px;
}
</style>
而且它也不起作用。
這是怎麼回事?
你有沒有清除浮動`浮動:無;`?或嘗試`margin:0px auto;`。 – Ish 2011-02-10 22:39:38