What is white-space in html

王林
Release: 2023-01-03 09:25:07
Original
7155 people have browsed it

In HTML, the white-space attribute is used to specify how to handle the white space within the element, such as [white-space:normal], which means that the white space will be ignored by the browser. If you need to preserve white space, you can use [white-space:pre].

What is white-space in html

The operating environment of this article: windows10 system, html 5, thinkpad t480 computer.

Attribute introduction:

The white-space attribute specifies how to handle the white space within the element.

Attribute value:

  • normal Default. White space is ignored by the browser.

  • #pre Blank spaces will be retained by the browser. It behaves like the

     tag in HTML. </p></li>
    <li><p>nowrap The text will not wrap. The text will continue on the same line until the <br> tag is encountered. </p></li>
    <li><p>pre-wrap Preserves whitespace sequences, but wraps normally. </p></li>
    <li><p>#pre-line Merges whitespace sequences, but retains newlines. </p></li>
    <li><p>#inherit Specifies that the value of the white-space attribute should be inherited from the parent element. </p></li>
    </ul>
    <p>Example: </p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false">p{
        white-space:nowrap;
    }
    Copy after login

Related recommendations: html tutorial

The above is the detailed content of What is white-space in html. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template