嗨,我有许多表嵌套在一个表中,它在所有浏览器中都运行良好,但是当我旋转文本时,宽度比例在 Safari 和 FireFox 中不起作用,它在 IE9 中运行良好,我也注意到如果我有超过一个字的宽度增加了!!
这是样式:
.V-text
{
padding: 0px;
color: #333; /* border: 0px solid red;*/
/*writing-mode: tb-rl;*/
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-o-transform: rotate(90deg);
white-space: nowrap;
display: inline-table;
font-weight: normal; /* vertical-align: bottom; bottom: 0; text-align: center;*/
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
}
这是表格的一部分:
<table width="920px" border="0" >
<tr>
<td>
<table width="50px">
<tr style="height: 105px" valign="middle">
<td align="center" class="t-border" width="15px">
<div class="V-text">
text</div>
</td>
<td align="center" class="t-noborder" width="15px">
<div class="V-text">
text</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
其他没有旋转的桌子效果很好。我试过 style="table-layout:fixed" 没用,我会很感激你的建议。