"."/> ".">

Home  >  Article  >  Web Front-end  >  How to hide placeholder in html

How to hide placeholder in html

藏色散人
藏色散人Original
2021-04-26 10:10:353326browse

htmlHow to hide the occupied space: first open the corresponding HTML file; then use the "visibility:hidden;" attribute to hide the occupied space, the code is such as "6193df77210ba7ff6eabb40bb298d559”.

How to hide placeholder in html

The operating environment of this article: Windows7 system, HTML5&&CSS3 version, Dell G3 computer.

Html takes up space when hidden and does not take up space when hidden

Hide does not take up space:

display:none;

The following is a sample code:

<span style="display:none;"> 获取中</span>

Hide occupied space:

visibility:hidden;

The following is a sample code:

<span style="visibility:hidden;"> 获取中</span>

【Recommended learning: css video tutorial

The above is the detailed content of How to hide placeholder in html. 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