Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I found this CSS code and I ran it to see what it does and it outlined EVERY element on the page,

Can someone explain what the Asterisk * does in CSS?

<style>
* { outline: 2px dotted red }
* * { outline: 2px dotted green }
* * * { outline: 2px dotted orange }
* * * * { outline: 2px dotted blue }
* * * * * { outline: 1px solid red }
* * * * * * { outline: 1px solid green }
* * * * * * * { outline: 1px solid orange }
* * * * * * * * { outline: 1px solid blue }
</style>
share|improve this question
6  
Just for fun, @jasondavis, but it is spelled "asterisk". Know how I remember that? Nathan Hale said that he regrets that he has but one of these for his country. :-) Get it? Anyone? Anyone? Bueller? – Rap Jul 30 '09 at 3:22
1  
Interesting...I have never seen nested "*" before. I bet this just creates a rainbow colored border =) – Allen Liu Jul 30 '09 at 3:22
4  
Asterix is a favorite comic book character, coming to think of it. – futureelite7 Jul 30 '09 at 3:31
Rainbow border? Very kitsch... – heltonbiker Dec 10 '11 at 20:11

4 Answers

up vote 39 down vote accepted

It is a wildcard, this means it will select all elements within that portion of the DOM.

For example, if I want apply margin to every element on my entire page you can use:

* {
    margin: 10px;
}

You can also use this within sub-selections, for example the following would add a margin to all elements within a paragraph tag:

p * {
    margin: 10px;
}

Your example is doing some css trickery to apply consecutive borders and margins to elements to give them multiple coloured borders. For example, a white border surrounded by a black border.

share|improve this answer

The CSS that you referenced is very useful to a web-designer for debugging page layout problems. I often drop it into the page temporarily so I can see the size of all the page elements and track down, for example, the one that has too much padding which is nudging other elements out of place.

The same trick can be done with just the first line, but the advantage of defining multiple outlines is that you get a visual clue via the border colour to the hierarchy of the nested page elements.

share|improve this answer
Very interesting, never thought of that before! – Jake Petroules Jun 20 '11 at 0:33
1  
Though these days the browser built in inspectors are much more effective, no? Or using firebug. – Software Monkey Jan 29 at 1:33
@SoftwareMonkey - Yes, these days that's true. The build-in inspectors are great. For example, I use Chrome and do Ctrl+Shift+c then hover over an element and Chrome colours the background. Much quicker than dropping this asterisk styling into the CSS. – Tom Jan 30 at 7:48

* acts as a wildcard, just like in most other instances.

If you do:

*{
  margin: 0px;
  padding: 0px;
  border: 1px solid red;
}

Then all HTML elements will have those styles.

share|improve this answer

* is a wildcard. What it means is that it will apply the style to any HTML element. Additional *'s apply the style to a corresponding level of nesting.

This selector will apply different colored outlines to all elements of a page, depending on the elements's nesting level.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.