Table of Contents
img#dice { float: right; margin-left: 2em; opacity: 0; }
Copy after login
" >opacity: 0
img#dice { float: right; margin-left: 2em; opacity: 0; }
Copy after login
img#dice { position: absolute; left: -1000px; }
Copy after login
" >position: absolute
img#dice { position: absolute; left: -1000px; }
Copy after login
Home 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

Jul 21, 2018 pm 06:01 PM

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>
Copy after login

The basic CSS style is as follows:

img#dice { float: right; margin-left: 2em; }
Copy after login

visibility: hidden

img#dice { float: right; margin-left: 2em; visibility: hidden; }
Copy after login

Layout of image and text with visibility set to hidden on an image

##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.

Set

visibility: visibleCan make hidden elements visible.

opacity: 0
img#dice { float: right; margin-left: 2em; opacity: 0; }
Copy after login

Layout of image and text with opacity set to 0 on an image

This is a CSS3 property, set

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.

You can usually use the

opacity attribute to create the fade-in and fade-out effect of an element.

Setting

opacity:1 can make transparent elements visible.

position: absolute
img#dice { position: absolute; left: -1000px; }
Copy after login

Layout of image and text with position set to absolute on an image

The oldest and most standard approach is to hide the element by setting its absolute positioning . This technique takes the element out of the document flow and puts it above the normal document, and sets a large

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.

Using this technique is the best way when making linear animations of some elements.

To make the element visible again, increase the value of

left so that the element appears on the screen.

display: none
img#dice { display: none; }
Copy after login

Layout of image and text with display set to none on an image

##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.

display: none

Very useful when creating an accordion effect. Set the element to

display: block

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

scale

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:

What are the hiding methods of HtmL elements

javascript controls html elements to show/hide implementation code_javascript Skill

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!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working With GraphQL Caching 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 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 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 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 Vue 3 Apr 02, 2025 pm 06:32 PM

It&#039;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 A bit on ci/cd Apr 02, 2025 pm 06:21 PM

I&#039;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 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? 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&#039;s like this.

See all articles