Heim  >  Artikel  >  Web-Frontend  >  Pre-Tag in HTML

Pre-Tag in HTML

WBOY
WBOYOriginal
2024-09-04 16:25:20763Durchsuche

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. It is used to remove this drawback. Pre tag is used to keep the text format as it is. It is changed when CSS tags are applied. It shows the preformatted text of the content.

Syntax:

HTML has many tags for different purpose.

Example:


  • , etc.</li>
    </ul>
    <p>A pre tag has an opening tag as well as a closing tag like other HTML tags.</p>
    <pre class="brush:php;toolbar:false"><pre class="brush:php;toolbar:false"> content of web 

    The above syntax used where we need the preformatted text of the content.

    How Pre Tag Works In HTML?

    Below is the explanation for how Pre tag work:

    1. Using Pre Tag In Html

    Code:

    <!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.
    

    Output:

    Pre-Tag in HTML

    Explanation to the above code: Show the above example of it. When pre-tag is applied in the required part of content, the content looks in formatted as it is. Space and the next line are not ignored when pre tag applied to the text.

    2. Without Using Pre Tag In Html

    Code:

    <!DOCTYPE>
    <html>
    <head>
    <title> using pre tag in html </title>
    </head>
    <body>
    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.
    This tag is used to remove this drawback. Pre tag used to
    keep text format as it is. It is changed when CSS tags are applied.
    This pre tag shows the preformatted text of the content.
    </body>
    </html>

    Output:

    Pre-Tag in HTML

    Explanation to the above code: Show the above example, which is without using it. Space, line break and new line automatically ignored. The web page shows content according to their requirements. To give space and break the line, we have to use HTML tags.

    3. Use HTML other tags

    Code:

    <!DOCTYPE>
    <html>
    <head>
    <title> using pre tag in html </title>
    </head>
    <body>
    The Web browser is ignored space,         line breaks, and other formatting characters of text.<br>
    If you wanted some      format then tag or attribute must have used every time.<br>
    This is used to remove its drawback. Pre tag used to keep text format as it is.<br> It is changed when CSS tags are applied. <br>
    It shows preformatted text of the content.<br>
    </body>
    </html>

    Output:

    Pre-Tag in HTML

    Explanation to the above code: Show the above example, which is without using the pre tag. But instead of using pre tag, we are using other HTML tags.
    tag is used to break the line and character used for space.

    Use of Pre Tag

    • Web pages ignore space and line break if we are not using tags and attribute. But every line, we have to use these attributes.
    • Pre tag preserves the original content format.
    • The developer can use one tag for the block instead of using many tags. Reduce the coding and easy to understand.

    Pre Tag supports the following web browsers:

    • Google Chrome
    • Internet Explorer
    • Firefox
    • Opera
    • Safari

    Example to Implement

    Below are the examples of implementing in it:

    Example #1

    Using Pre Tag with a CSS tag.

    Code:

    <!DOCTYPE>
    <html>
    <head>
    <title> using pre tag with CSS </title>
    <style>
    pre {
    font-family: Arial;
    color: yellow;
    border: solid black;
    background-color: black;
    }
    </style>
    </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.
    This 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.
    This tag in HTML shows the preformatted text of the content.
    

    Output:

    Pre-Tag in HTML

    Explanation to the above code: Show the above example is using it with CSS style tags. If you used pre tag then also CSS style tags can change the format of content. Style tag used font style, border, and text color in CSS.

    Example #2

    The Below Example. This is a combination of other HTML tags and pre tags with CSS.

     Code:

    <!DOCTYPE>
    <html>
    <head>
    <title> using pre tag in html  with CSS </title>
    <style>
    pre {
    font-family: Arial;
    color: yellow;
    border: solid black;
    background-color:black;
    }
    </style>
    </head>
    <body>
    <p>
    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.
    This tag used to remove this drawback. Pre tag used to keep text format as it is.
    It is changed when CSS tags are applied.
    It shows the preformatted text of the content.
    </p>
    <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.
    This 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.
    This tag in HTML shows the preformatted text of the content.
    

    Output:

    Pre-Tag in HTML

    Conclusion

    The developer uses this tag to reduce coding and get formatted content. The web cannot ignore the format of content inside the pre tag.

    Das obige ist der detaillierte Inhalt vonPre-Tag in HTML. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:Inline-Tags in HTMLNächster Artikel:Inline-Tags in HTML