웹 브라우저에서는 공백, 줄 바꿈 및 기타 텍스트 서식 문자가 무시됩니다. 어떤 형식을 원했다면 매번 태그나 속성을 사용해야 합니다. 이런 단점을 없애기 위해 사용됩니다. Pre 태그는 텍스트 형식을 그대로 유지하기 위해 사용됩니다. CSS 태그를 적용하면 변경됩니다. 미리 포맷된 콘텐츠 텍스트를 보여줍니다.
구문:
HTML에는 다양한 목적을 위한 많은 태그가 있습니다.
예:
pre 태그에는 다른 HTML 태그와 마찬가지로 여는 태그와 닫는 태그가 있습니다.
<pre class="brush:php;toolbar:false"> content of web
위 구문은 미리 형식화된 콘텐츠 텍스트가 필요한 경우에 사용됩니다.
다음은 사전 태그 작동 방식에 대한 설명입니다.
코드:
<!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.