達到你想要的旋轉效果的同時相應地調整單元格大小,請考慮使用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中文網其他相關文章!