Visibility vs Display in CSS

by Steven Bradley
on Wednesday July 1st, 2009 in CSS

You have an element in your html that you want to temporarily hide. should you change it’s visibility to hidden or its display to none? Is there any difference? How will the rest of the page respond to your element that’s sometimes seen and sometimes not?

The css properties visibility and display may seem to do the same thing on the surface, but they are very different and often confuse those new to web development. I thought a quick walkthrough of the main values associated with each property along with a demo of each in action would help remove that confusion.

Visibility and Display Properties in Action

Here’s a simple demo of visibility and display in action that will open in a new window. Click the two links at the top to toggle the visibility and the display to see how each affects the other elements on the page. I’ll explain what’s going on with each property below.

How the CSS Visibility Property Works

The visibility property has four values associated with it, but let’s focus on the two used most often, visible and hidden.

From W3Schools

visibility: visible
The element is visible. This is default

visibility: hidden
The element is invisible (but still takes up space)

Both values are rather straightforward and behave exactly as you think. You see elements that are visible and don’t see elements that are hidden. That important point to note is that when hidden the element still takes up space.

How the CSS Display Property Works

The display property has quite a few values associated with it, but again let’s focus on a smaller subset. The two values that concern us here are block and none, but I want to quickly mention the inline value too.

Again from W3Schools

display: none
The element will generate no box at all

display: block
The element will generate a block box
(a line break before and after the element)

display: inline
The element will generate an inline box
(no line break before or after the element)

On the surface display: none might seem to be the same is visibility: hidden, but it isn’t. The big difference is in that point I called out above.

visibility: hidden - the element stays in the normal document flow

display: none - the element is removed from normal document flow so surrounding html elements collapse to close the space

Elements set to display as block or inline both fill a space. The difference being that block elements have line breaks around them and inline elements don’t. Some elements are block elements by default and some are inline elements.

When Should You Use Visibility and When Should You Use Display?

While both can be used to “hide” an element each does so in a different way. Again that difference is in how each responds to the normal document flow.

You want to use visibility when you want the element to hold its space even when it’s not seen. You want to use display when you want the element to give back its space allowing the other elements on your page to collapse around it.

In practice I tend to use display more than visibility. Usually when you want an element not to show you don’t want to leave an empty space in its place. You do need to understand that other html elements will move to fill the now unoccupied space and develop your layout accordingly.

SEO Effects of Visibility and Display

A sometimes used spam tactic is to stuff keywords on a page and make them invisible in some way. Often this is done not through either of the css properties above, but rather by giving the text the same color as the background it sits on or making the font so small as to render it invisible.

Because these tactics are frowned up by search engines, some people worry about using either the visibility or the display property to “hide” html.

There are many good reasons why you want some elements in your design to sometimes be seen and sometimes not be seen and search engines understand that. As long as you aren’t trying to trick search engines in any way you shouldn’t encounter any problems using either visibility or block to show and hide an element.

Popularity: 3%

How To Create Stylish Navigation Buttons With CSS

by Steven Bradley
on Tuesday June 23rd, 2009 in CSS

Most of the time when designing your site navigation you’ll turn to an image to give it that something extra. However images add weight to a web page and make additional http requests leading to longer load times. Ever since I began developing websites, I’ve looked for ways to replace images with code. Today I want to share a simple way to style navigation buttons sans images and using css only.
Read the rest of this entry »

Popularity: 5%

4 Common But Not-So-Visible SEO Mistakes

by Steven Bradley
on Friday June 12th, 2009 in SEO

The following guest post is from Nicole White from Web Design Schools Guide.

If you own a website, you know that SEO is an inherent part of the design process, a very important part that determines your position in the search engine rankings and one that can make or break your success on the Internet.
Read the rest of this entry »

Popularity: 5%

Understanding Style Precedence in CSS: Specificity, Inheritance, and the Cascade

by Steven Bradley
on Tuesday June 9th, 2009 in CSS

Have you ever run into the situation where you’re trying to apply a css style to an element, but it won’t take? Your page it seems to be ignoring your css, but you can’t figure out why. Maybe you found yourself using !important or adding an inline style as a last resort. There’s a good chance the problem you encountered was one of css precedence.
Read the rest of this entry »

Popularity: 6%

Jammed Finger, Hacked Sites, And A New Twitter Client

by Steven Bradley
on Thursday May 28th, 2009 in Whatever

How’s that for a non-sequitor page title?

The first part relates to a softball injury I suffered last night, the second is some info about a recent hack in the wild that affected a friend’s sites, and the last refers to a new Twitter client that I think goes one better than most of the current crop.
Read the rest of this entry »

Popularity: 7%

Are You Focusing On The Wrong Goals?

by Steven Bradley
on Tuesday May 19th, 2009 in Marketing

There are many intermediate goals along the way to your desired result. These intermediate steps are not, however, the end goal, but too often they get treated as if they are.
Read the rest of this entry »

Popularity: 7%

Cropping Images For Maximum Impact

by Steven Bradley
on Wednesday May 13th, 2009 in Web Design

When adding images to your site or blog posts do you take the time to crop them to create a more dynamic and visually interesting image? Here’s a simple trick when you have an image that includes the horizon though the main idea will work with the subject of any image.
Read the rest of this entry »

Popularity: 9%

How To Organize CSS Files?

by Steven Bradley
on Friday May 1st, 2009 in CSS

You might have noticed the title of this post is phrased as a question. That’s because this post isn’t meant as a me telling you how to organize your css, but rather it’s intended as an open discussion. I’ll share some thoughts and I hope those of you who are css coders will chime in with some thoughts of your own.
Read the rest of this entry »

Popularity: 12%

Design Basics: Proximity To Know What Belongs With What

by Steven Bradley
on Tuesday April 28th, 2009 in Web Design

So far in this series we’ve taken an amateur design and improved it in several ways. We aligned design elements to provide a sense of order, we used repetition to create visual themes, and last week we used contrast to differentiate elements and call attention to them. Today we’ll talk about the last of the four basic design principles, proximity.
Read the rest of this entry »

Popularity: 11%

Design Basics: Contrast To Stand Apart And Call Attention

by Steven Bradley
on Tuesday April 21st, 2009 in Web Design

Last week our discussion revolved around repetition as a basic design principle. We saw how adding repetitive elements highlights similarity and how repetition begins to create themes within your design. Today we talk about contrast.
Read the rest of this entry »

Popularity: 13%

Subscribe

Search TheVanBlog

Recommended

Small Business Forum SEO Book Training

Lunarpages.com Web Hosting

Popular Posts

Top Commenters