Web ブラウザでは、テキストのスペース、改行、その他の書式設定文字は無視されます。何らかの形式が必要な場合は、タグまたは属性を毎回使用する必要があります。この欠点を取り除くために使用されます。 preタグはテキストの形式をそのまま維持するために使用されます。 CSSタグが適用されると変更されます。コンテンツのフォーマット済みテキストが表示されます。
構文:
HTML には、さまざまな目的のための多くのタグがあります。
例:
pre タグには、他の 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.