首頁 >web前端 >html教學 >如何在HTML中不允許在封閉文字中插入換行符號?

如何在HTML中不允許在封閉文字中插入換行符號?

PHPz
PHPz轉載
2023-09-08 17:01:051575瀏覽

如何在HTML中不允許在封閉文字中插入換行符號?

使用 標籤可允許 HTML 中的封閉文字不中斷。 HTML 標籤用於指示瀏覽器不要破壞指定的文字。

這與 標籤一起使用, 會建議擴充瀏覽器何時可以在不可破壞的序列中插入換行符號。文字.與
標記不同,即使在- 標記的段中,該標記也始終會導致換行,而 標記僅在放置在- 標記的內容段內時才起作用,並且僅噹噹前行已經超出瀏覽器的範圍時才會導致換行。顯示視窗邊距。

範例

您可以嘗試執行下列程式碼,以允許 HTML 中的封閉文字不會中斷 -

<!DOCTYPE html>
<html>
   <head>
      <title>HTML nobr Tag</title>
   </head>
   <body>
      <nobr>This is a very long sequence of text that is forced to be
      on a single line, even if doing so causes <wbr />

      the browser to extend the document window beyond the size of the
      viewing pane and the poor user must scroll right <wbr />

      to read the entire line.
      </nobr>
   </body>
</html>

以上是如何在HTML中不允許在封閉文字中插入換行符號?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除