Hide div in HTML Hide table TABLE or DIV content css style

Hide div in HTML Hide table TABLE or DIV content css style

I solved a problem tonight that has been bothering me for a few days, but I don’t know if it’s really solved yet, I hope it is!
I also suddenly remembered a hidden style code that I used a few years ago. Sometimes it is very convenient to use. For example, if you want to make the content in a table or DIV completely invisible, just add it, and hey, it will be invisible! Just add this red sentence in! Write it here for a record! It’s actually very simple! But very practical

Copy code
The code is as follows:

<table width="200" border="1" bgcolor="#333333">
<tr>
<td colspan="3">&nbsp;</td>
</tr>
</table>
<table width="200" border="1" bgcolor="#FF3300" style="VISIBILITY:hidden">
<tr>
<td colspan="3">&nbsp;</td>
</tr>
</table>
<table width="200" border="1" bgcolor="#663399">
<tr>
<td colspan="3">&nbsp;</td>
</tr>
</table>

<<:  In-depth understanding of mathematical expressions in CSS calc()

>>:  Three properties of javascript objects

Recommend

js realizes the magnifying glass function of shopping website

This article shares the specific code of js to re...

How to use display:olck/none to create a menu bar

The effect of completing a menu bar through displ...

The process of deploying and running countly-server in docker in win10

I have just come into contact with and become fam...

MySQL binlog opening steps

Binlog is a binary log file that is used to recor...

A Brief Analysis of the Differences between “:=” and “=” in MySQL

= Only when setting and updating does it have the...

Use CSS to switch between dark mode and bright mode

In the fifth issue of Web Skills, a technical sol...

Tomcat's class loading mechanism process and source code analysis

Table of contents Preface 1. Tomcat class loader ...

How to permanently change the host name in Linux

If you want to change your host name, you can fol...

5 ways to achieve the diagonal header effect in the table

Everyone must be familiar with table. We often en...

Introduction to the use of MySQL source command

Table of contents Thoughts triggered by an online...

A brief discussion on the use of React.FC and React.Component

Table of contents 1. React.FC<> 2. class xx...

Detailed explanation of Nginx reverse proxy example

1. Reverse proxy example 1 1. Achieve the effect ...