pre width屬性指定每行的最大字符數(shù)。只有Firefox支持版本1.0到29.0的width屬性。
預(yù)格式化的文本,寬度為40個字符:
<!DOCTYPE html> <html> <head> <title>HTML:<width> name 屬性 - 菜鳥教程(cainiaoplus.com)</title> </head> <body> <p>正常 pre:</p> <pre> Text in a pre element is displayed in a fixed-width font, and it preserves both spaces and line breaks </pre> <p>定義具體寬度的Pre:</p> <pre width="40"> Text in a pre element is displayed in a fixed-width font, and it preserves both spaces and line breaks </pre> </body> </html>測試看看 ?/?
IEFirefoxOperaChromeSafari
Firefox支持版本1.0到29.0的width屬性。
HTML5 不支持 <pre> width 屬性。請使用 CSS 代替。
在 HTML 4.01 中,<pre> 的 width 屬性 已廢棄。
width 屬性指定每行的最大字符數(shù)。
在 HTML 4.01 中,<pre> 的 width 屬性已廢棄。請使用 CSS 代替。
CSS 語法:<div style="width:200px;overflow:auto"><pre>Some text</pre></div>
在我們的 CSS 教程中,您可以找到更多有關(guān) width 屬性 的細(xì)節(jié)。
提示:如果文本的寬度超過周圍元素的寬度,overflow 屬性會添加一個滾動條。
<pre width="number">
值 | 描述 |
---|---|
number | 設(shè)置以字符數(shù)為單位的寬度。 |