如果我将table-layout属性设置为fixed并自动换行为break-word,则表行标题大小将在xsl中使用以下设置缩小。
table
{
table-layout: fixed ;
}
table tr th{
font-size: 68%;
color: #ffffff;
font-weight: bold;
text-align:center;
background:#2674a6;
white-space: wrap;
word-wrap:nowrap;
}
table tr td{
font-size: 68%;
background:#eeeee0;
white-space: wrap;
word-wrap: break-word;
}
以下是第一次呈现HTML时的外观
并且在扩展+符号时,表的大小正在缩小,如
中所示请建议如何使用表格的固定布局对内容进行自动换行,而不会在展开时缩小其大小。