iT邦幫忙

0

HTML Table 裡的英文單字不斷開

  • 分享至 

  • xImage

請問要如何讓HTML Table 裡的英文單字不斷開(太長直接換到下一行頭開始)
斷開例如下圖,英文單字在儲存格後面會斷開到下一行去
https://ithelp.ithome.com.tw/upload/images/20230503/201341566eP6q7tfSp.png
問了ChatGPT,沒有符合想要的
https://ithelp.ithome.com.tw/upload/images/20230503/20134156FtLNpAYPUl.png

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

1
Jun
iT邦見習生 ‧ 2023-05-03 23:20:04
最佳解答

可參考這個網頁
下面有一個範例供參考:
CSS宣告

<style>
    .myclass {
        word-break: break-all;
        min-width: 250px;
        max-width: 250px;
    }
    .myclass1 {
		word-break: keep-all;
        min-width: 250px;
        max-width: 250px;
    }
</style>

HTML Table 內容

<table border=1>
  <tr>
   <td class="myclass1">
    Reading short stories in English is a great way to improve your language level. 
   </td>
  <td class="myclass">
    Reading short stories in English is a great way to improve your language level. 
  </td>
 </tr>
</table>

結果顯示如下圖:
https://ithelp.ithome.com.tw/upload/images/20230503/201599468oeX8NYTuQ.png

謝謝您

我要發表回答

立即登入回答