模板:Nowrap檢視原始碼檢視歷史
(重新導向自 Template:Nobr)
本模板防止包含空格的一段文本或鏈接被從中換行。換行是在英文環境下可能需要注意的一個問題。中文環境下也可用該模板來保持一段文本不被換行所打斷,例如:
{{nowrap|不想從中換行的文字}}
在你使用本模板之前你可能會想弄懂換行處理 。
用法
Lots of text {{nowrap|10 kg (22 lb)}} more text.
它可能顯示成這樣:
- Lots of text 10 kg (22 lb)
more text.
或者這樣:
- Lots of text
10 kg (22 lb) more text.
但不會顯示成這樣:
- Lots of text 10 kg (22
lb) more text.
處理解釋字符(interpreted characters)
模板在處理含有等號「=
」或豎直符「|
」的參數數據時都可能產生一些問題。在那種情況下,可考慮使用{{nowrap begin}}+{{nowrap end}}來代替。但是也有權變措施:
對於包含一個等號「=」的文本,在文本之前放置「1=
」,例如:
{{nowrap|1=2 + 2 = 4}}
顯示成這樣:
- 2 + 2 = 4
對於包含一個豎直符「|」的文本,用|
或{{!}}
來避開此符號,例如:
{{nowrap||2| < 3}}
或像這樣:
{{nowrap|{{!}}2{{!}} < 3}}
顯示成這樣:
- |2| < 3
技術細節
完成此項工作的實際的代碼是這樣的HTML+CSS代碼:
<span style="white-space:nowrap">This text will not wrap(这些文字不会换行)</span>
若你的文本開頭或結尾處有空格,在完成顯示的文本中那些空格將掉到no-wrap標籤外面,這是由於Wikimedia的顯示機制所致。
The above documentation is transcluded from Template:Nowrap/doc. (edit | history) Editors can experiment in this template's sandbox (create | mirror) and testcases (create) pages. Please add categories to the /doc subpage. Subpages of this template. |