Home  >  Article  >  Web Front-end  >  How to hide table in css

How to hide table in css

醉折花枝作酒筹
醉折花枝作酒筹Original
2021-04-21 14:27:322499browse

In CSS, you can use the display attribute to hide the table. You only need to set the "display:none" style to the tr element. The display attribute is used to define the type of display box generated by the element when establishing the layout. When the value is none, it means that the element will not be displayed and will be separated from the document flow and will not occupy actual space.

How to hide table in css

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

Create a new html file and name it test.html. In the test.html file, use the table tag to create a table with three rows and two columns.

In the test.html file, set the id attribute of the second line to mytarget, and use css to hide it below.

<body>
    <table border="1">
        <tr>
            <td>19999</td>
            <td>19999</td>
        </tr>
        <tr id="mytarget">
            <td>19999</td>
            <td>19999</td>
        </tr>
        <tr>
            <td>19999</td>
            <td>19999</td>
        </tr>
    </table>
</body>

In the css tag, set the width of the table to 280px and the height to 180px through table. Set the style of the second row of the table through the id, and set the display attribute to none to hide it.

<style>
table{
    width: 280px;
    height: 180px;
}
#mytarget{
    display:none;
}
</style>

Open the test.html file in the browser to check the effect.

How to hide table in css

Recommended learning: css video tutorial

The above is the detailed content of How to hide table in css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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