Home > Article > Web Front-end > How to hide table in css
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.
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.
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!