"."/> ".">
Home > Article > Web Front-end > How to hide placeholder in html
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”.
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!