html hidden control method

藏色散人
Release: 2023-01-06 11:16:20
Original
4392 people have browsed it

htmlMethods to hide controls: 1. Hide via the "<input type="hidden" />" method; 2. Hide via the "display:none" attribute; 3. Hide via "visibility: hidden; "Property is hidden.

html hidden control method

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

There are several ways to hide HTML controls, placeholder hiding

Hide controls in HTML, such as hiding :

First The first hiding method:

<input type="hidden" />
Copy after login

The second hiding method:

<input type="text" style="display:none" />
Copy after login

The above two methods can achieve hiding without leaving traces.

But sometimes we need to hide the control and occupy the position.

The third hiding method will be introduced below:

<input type="text" style="visibility: hidden;" />
Copy after login

In this way, it seems to be hidden, but in fact it still occupies the layout position.

【Recommended learning: html video tutorial

The above is the detailed content of html hidden control method. 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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!