What does the phrase div style display none mean?

Updated on educate 2024-03-27
7 answers
  1. Anonymous users2024-02-07

    It's in a hidden layer.

  2. Anonymous users2024-02-06

    Because display is none, this part will not be displayed on the page.

  3. Anonymous users2024-02-05

    This means that this layer is not displayed on the web page and is hidden.

  4. Anonymous users2024-02-04

    none This element will not be displayed.

    block This element will appear as a block-level element, with a line break before and after it.

    inline defaults. This element is displayed as an inline element with no line breaks before and after the element.

    inline-block element. ( New Value).

    list-item This element is displayed as a list.

    run-in This element is displayed as a block-level element or an inline element depending on the context.

    Compact CSS has the value compact, but it has been removed from due to lack of broad support.

    There is a value marker in marker css, but it has been removed from the due lack of broad support.

    table This element is displayed as a block-level (similar to ), with a line break before and after it.

    inline-table This element is displayed as an inline (like that) with no line breaks before and after it.

    table-row-group This element is displayed as a grouping of one or more rows (similar to ).

    table-header-group This element is displayed as a grouping of one or more rows (similar to ).

    table-footer-group This element is displayed as a grouping of one or more rows (similar to ).

    table-row This element appears as a line (like ).

    table-column-group This element is displayed as a grouping of one or more columns (similar to ).

    table-column This element is displayed as a cell column (similar to ).

    table-cell This element is displayed as a cell (similar to and ).

    table-caption This element is displayed as a header (like ).

    inherit specifies that the value of the display property should be inherited from the parent element. The above is the property value of the display What you are pasting** means: The content of this label will not be displayed!

  5. Anonymous users2024-02-03

    style indicates the style of the DIV.

    display is used to set the display status of a tag, and there are three possible values:

    1) none: does not show or hides.

    2) block: It is displayed as a block tag, that is, the tag occupies an exclusive line, with a line break before and after.

    3) inline: indicates that the label is displayed as a row-level label, that is, the label is the same as other labels.

  6. Anonymous users2024-02-02

    =。= This .........It's just a div block with an empty name, and the style doesn't show anything .........Let's ......

    CSS+div didn't learn too well, but it was much ......

  7. Anonymous users2024-02-01

    display: block to block element display;

    display:none: hides block elements;

Related questions