使用 標記可允許 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中不允許在封閉文本中插入換行符?的詳細內容,更多請關注www.92cms.cn其它相關文章!