Web Front-end
CSS Tutorial
How to hide HTML elements using CSS? Four ways to hide HTML elements
How to hide HTML elements using CSS? Four ways to hide HTML elements
Today's web design is becoming more and more dynamic. Sometimes we may need to hide certain elements and display them only when needed. There are four ways we commonly use CSS to hide HTML elements. Each of these four techniques for displaying and hiding elements has their own advantages and disadvantages. Here are some examples.
In this article, we will use the following HTML code and CSS styles to explain 4 techniques of hiding elements.
<p>Dice used for traditional Dungeons ...</p> <img src="dice.jpg" alt=”Photograph..." id="dice"> <p>The dice are used to determine...</p>
The basic CSS style is as follows:
img#dice { float: right; margin-left: 2em; }visibility: hidden
img#dice { float: right; margin-left: 2em; visibility: hidden; }
##visibility: hidden is the first choice of many people when hiding an HTML element. As shown in the picture on the right, the picture is missing, but it also leaves a blank area where the original picture was. This attribute simply hides an element, but the space occupied by the element still exists.
visibility: visibleCan make hidden elements visible.
opacity: 0img#dice { float: right; margin-left: 2em; opacity: 0; }Copy after login
img#dice { float: right; margin-left: 2em; opacity: 0; }
opacity: 0 You can make an element completely transparent, creating the same effect as visibility: hidden. Compared with visibility, the advantage of opacity is that it can be transition and animate.
opacity attribute to create the fade-in and fade-out effect of an element.
opacity:1 can make transparent elements visible.
position: absoluteimg#dice { position: absolute; left: -1000px; }Copy after login
img#dice { position: absolute; left: -1000px; }
left negative value positioning for it, so that the element is positioned outside the visible area. Neither float nor margin can affect elements with position: absolute, so they can be well hidden.
left so that the element appears on the screen.
display: noneimg#dice { display: none; }Copy after login
img#dice { display: none; }
is also a very old technology, It is a compromise between position: absolute and visibility: hidden; . The element will become invisible and will no longer occupy the space of the document.
Very useful when creating an accordion effect. Set the element to
or other value to make the element visible again. In addition to the 4 methods described above, there are other ways to hide elements, especially when using CSS3. For example: you can use the
attribute to reduce the size of an element until it disappears. But the scale attribute is the same as opacity: 0 and visibility: hidden. Invisible elements will take up space in the document. Related recommendations:
The above is the detailed content of How to hide HTML elements using CSS? Four ways to hide HTML elements. For more information, please follow other related articles on the PHP Chinese website!
Hot AI Tools
Undresser.AI Undress
AI-powered app for creating realistic nude photos
AI Clothes Remover
Online AI tool for removing clothes from photos.
Undress AI Tool
Undress images for free
Clothoff.io
AI clothes remover
AI Hentai Generator
Generate AI Hentai for free.
Hot Article
Hot Tools
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
Hot Topics
1378
52
Working With GraphQL Caching
Mar 19, 2025 am 09:36 AM
If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or
Show, Don't Tell
Mar 16, 2025 am 11:49 AM
How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about
Building an Ethereum app using Redwood.js and Fauna
Mar 28, 2025 am 09:18 AM
With the recent climb of Bitcoin’s price over 20k $USD, and to it recently breaking 30k, I thought it’s worth taking a deep dive back into creating Ethereum
Creating Your Own Bragdoc With Eleventy
Mar 18, 2025 am 11:23 AM
No matter what stage you’re at as a developer, the tasks we complete—whether big or small—make a huge impact in our personal and professional growth.
Vue 3
Apr 02, 2025 pm 06:32 PM
It's out! Congrats to the Vue team for getting it done, I know it was a massive effort and a long time coming. All new docs, as well.
A bit on ci/cd
Apr 02, 2025 pm 06:21 PM
I'd say "website" fits better than "mobile app" but I like this framing from Max Lynch:
Let's use (X, X, X, X) for talking about specificity
Mar 24, 2025 am 10:37 AM
I was just chatting with Eric Meyer the other day and I remembered an Eric Meyer story from my formative years. I wrote a blog post about CSS specificity, and
Can you get valid CSS property values from the browser?
Apr 02, 2025 pm 06:17 PM
I had someone write in with this very legit question. Lea just blogged about how you can get valid CSS properties themselves from the browser. That's like this.


