首頁 > web前端 > css教學 > 主體

如何在 TD 元素中進行文字換行?

Mary-Kate Olsen
發布: 2024-11-15 11:45:03
原創
953 人瀏覽過

How to Make Text Wrap in a TD Element?

Wrap Text in Tag

Problem:

You wish to wrap text within a table cell ( element) but have found that setting style="word-wrap: break-word;" width="15%" does not wrap the text.

Answer:

Wrap TD Text

To effectively wrap text within a element, follow these steps:

  1. Set Table Style:

    table {
        table-layout: fixed;
    }
    登入後複製

    This ensures that the table width is fixed, allowing the text to wrap without exceeding the width of the table.

  2. Set TD Style:

    td {
        word-wrap:break-word
    }
    登入後複製

    This enables word-wrapping within the table cells.

By following these steps, you can wrap text within elements even with restricted cell widths.

以上是如何在 TD 元素中進行文字換行?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板