我遇到的问题是我需要在 TD 文本上保留空白,同时仍然垂直对齐 TD 中的文本。启用时white-space: pre-wrap
,文本在 TD 内底部对齐。如果我禁用该标签,那么 IE 会在每个字母之间去掉一个空格。
<td width="10%" class="someClass" style="white-space: pre-wrap;">
hh ee lll oooo
</td>
这是用于那个的CSS
.someClass {
text-align: left;
text-indent: 0px;
padding-top: 1px;
padding-bottom: 2px;
font-size: 1em;
}