达到你想要的旋转效果的同时相应地调整单元格大小,请考虑使用 CSS 和 HTML 的组合。
<code class="css">th { vertical-align: bottom; text-align: center; } th span { -ms-writing-mode: tb-rl; -webkit-writing-mode: vertical-rl; writing-mode: vertical-rl; transform: rotate(180deg); white-space: nowrap; }</code>
<code class="html"><table> <tr> <th><span>Rotated text by 90 deg.</span></th> </tr> </table></code>
在此解决方案中:
此解决方案要求您将旋转的文本包装在 中元素。 元素仅对 Chrome 是必需的,因为它本身不支持更改
以上是如何在 HTML 中将文本向左旋转 90 度并相应调整单元格大小?的详细内容。更多信息请关注PHP中文网其他相关文章!