我存在一个问题,使用<代码><pre> tag 载于<td>
。 我有共同基金数据表和三栏。 我需要所有三个栏都包含预定案文。
If I use <pre>
tag the text is shown preformatted as I need but the width of the columns gets much bigger than then the text.
我可以通过具体说明<代码>white-space: pre-line; in <pre>
tag s风格,在cs中解决这一问题。 但是,它只与火ox和迷信电公司合作,而神.却无视这种风格。
因此,我的问题是:是否有办法解决<代码>和td>的宽度; which contained <pre>
tag within?
EDITED:
My css class:
.dt_row {
height: 8px;
margin: 3px 3px 3px 3px;
color: #000000;
white-space: pre-line;
}
我的数据表:
<h:dataTable value="#{searchBean.searchResult.concordances}"
var="concordance">
<h:column>
<pre class="dt_row">
#{concordance.left}
</pre>
</h:column>
<h:column>
<pre class="dt_row" style="color: blue;">
#{concordance.middle}
</pre>
</h:column>
<h:column>
<pre class="dt_row">
#{concordance.right}
</pre>
</h:column>
</h:dataTable>
EDITED:
我找到了解决办法。 我没有使用<代码><pre> tag,我使用了<code>
,现在所有数据都完全展示。