Web 浏览器会忽略空格、换行符和其他文本格式字符。如果您想要某种格式,那么每次都必须使用标签或属性。它就是用来消除这个缺点的。 Pre 标签用于保持文本格式不变。当应用 CSS 标签时它会发生变化。它显示内容的预格式化文本。
语法:
HTML 有许多用于不同目的的标签。
示例:
等
前置标签与其他 HTML 标签一样有一个开始标签和一个结束标签。
<pre class="brush:php;toolbar:false"> content of web
上面的语法用于我们需要内容的预格式化文本的地方。
以下是 Pre 标签如何工作的说明:
代码:
<!DOCTYPE> <html> <head> <title> using pre tag in html </title> </head> <body> <pre class="brush:php;toolbar:false"> The Web browser is ignored space, line breaks, and other formatting characters of text. If you wanted some format then tag or attribute must have used every time. Pre tag in HTML used to remove this drawback. Pre tag used to keep text format as it is. It is changed when CSS tags are applied. Pre tag in HTML shows the preformatted text of the content.