我想要一个右边对齐的文本块,这比该页面上的其余文本占用更少的水平空间。我怎么去了?
在文字HTML中完成它的问题是组织模式会自动将这些部分之外的任何文本放入<p>
标记中(并且它不是块元素,因此在其中浮动通常不会好事等。)
这就是我现在的方式(它显示得很好,所以我希望它或多或少那样):
#+BEGIN_HTML
<div style="width:100%;height:84pt">
<p class="epigraph">
<em>
I have not increased nor diminished the measure,<br/>
I have not diminished the palm,<br/>
I have not encroached upon fields,<br/>
I have not added to the balance weights,<br/>
I have not tempered with the plumb bob of the balance.</em>
<br/>
<span style="text-align:right;width:100%;display:block">
<b style="line-height:24pt;font-weight:bold">
The Book of the Dead, Spell 125.</b>
</span>
</p></div>
#+END_HTML
另外我有这个CSS:
.epigraph {
float:right;
font-size:10pt;
font-family:serif;
line-height:12pt;
color: #aaa
}
但我宁愿自动......
答案 0 :(得分:0)
好吧,我觉得我发现了一些与我想要的相似的东西:
#+BEGIN_VERSE
I have not increased nor diminished the measure,
I have not diminished the palm,
I have not encroached upon fields,
I have not added to the balance weights,
I have not tempered with the plumb bob of the balance.
-- The Book of the Dead, Spell 125.
#+END_VERSE
这会生成HTML,以后稍微使用CSS可以按照看起来或多或少像题词的方式进行格式化。不完美,但会做。