CSS Selector Style - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T10:53:45Zhttp://stackoverflow.com/feeds/question/376248http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/376248/css-selector-style1CSS Selector StyleSoftware Monkey2008-12-17T22:19:53Z2009-07-01T00:02:34Z
<p>Simple question, and probably reflects my inexperience with CSS, but...</p>
<p>When creating a style sheet I like to explicitly specify the '*' wild card, so:</p>
<pre><code>*.TitleText {
</code></pre>
<p>instead of just</p>
<pre><code>.TitleText {
</code></pre>
<p>I find it reminds me that TitleText is applied to "any" tag, and can be overridden by a subsequent h1.TitleText. Maybe I just like this because for the longest time I didn't get that whole CSS selector concept properly and when I realized that the second (above) was just shorthand for the first, a lot of things "clicked".</p>
<p>Is what I do bad practice, good practice, or neither here nor there?</p>
http://stackoverflow.com/questions/376248/css-selector-style/376262#3762625Answer by ahockley for CSS Selector Styleahockley2008-12-17T22:23:22Z2008-12-17T22:23:22Z<p>I don't know whether it's good or bad, but I've been doing CSS work as part of web app development for several years and I've <em>never</em> seen anyone use the * character.</p>
http://stackoverflow.com/questions/376248/css-selector-style/376274#3762740Answer by Grant Wagner for CSS Selector StyleGrant Wagner2008-12-17T22:26:14Z2008-12-17T22:26:14Z<p>I don't think it matters, but none of the examples I ever saw when I was learning used that wild card format, so I learned to do without the asterisk.</p>
<p>Also, none of the tools that generate CSS do it that way, so by using the asterisk, you risk an automated tool wiping out your format if you ever choose to put your CSS into such a tool.</p>
<p>Just for consistency with most other web developers, I'd probably recommend doing away with the asterisk so you don't have to deal with another developer asking why you've put an asterisk there.</p>
http://stackoverflow.com/questions/376248/css-selector-style/376303#3763030Answer by WillCodeForCoffee for CSS Selector StyleWillCodeForCoffee2008-12-17T22:37:01Z2008-12-17T22:37:01Z<p>I think the * is implicit, so they do the same thing.</p>
<p>I am not sure, but it might cause some problems if you do it like this:</p>
<pre><code>span.style { color: red; }
*.style { color: blue; }
</code></pre>
<p>The * style will probably override the span style. I could be wrong though since span.style is a more specific selector.</p>
<p>I think it is pretty funny you do that, even though I totally get why! You're using DOS prompt/shell syntax with your CSS. In the end you might have been confusing yourself further thinking about it that way, since in a Shell you're looking at the file extension but in CSS it is actually mapping to a class.</p>
<p>So what I mean is, it works for class selectors, but kind of falls over for ID selectors. For example:</p>
<pre><code>span#id { ... }
*#id { ... }
</code></pre>
<p>...and it no longer looks like Shell syntax. :) Personally I wouldn't do it the way you're doing it, because it might be confusing, but I don't think you're breaking anything.</p>
http://stackoverflow.com/questions/376248/css-selector-style/376308#3763081Answer by seanb for CSS Selector Styleseanb2008-12-17T22:38:28Z2008-12-17T22:38:28Z<p>Personally, I tend to only use the * when applying a rule to all tags. It is redundant in the case of *.class{}, but useful in the case of .class *{}. </p>
<p>I have read in a few places, but not verified, that the * selector can impact performance. It's not something I use unless I need to, as I generally prefer to be a bit more explicit, but that's just a personal preference. </p>
http://stackoverflow.com/questions/376248/css-selector-style/376330#3763300Answer by questzen for CSS Selector Stylequestzen2008-12-17T22:46:18Z2008-12-17T22:46:18Z<p>That would be redundant, assuming * means 'every possible thing in the world' not having a * would also mean the same. I normally use *{margin:0; padding:0} in undo.css to reset the margins and paddings , but never as a pseudo selector. </p>
http://stackoverflow.com/questions/376248/css-selector-style/376337#3763370Answer by BeWarned for CSS Selector StyleBeWarned2008-12-17T22:47:53Z2008-12-17T22:47:53Z<p>I have never seen anyone use the wildcard like that, and I suspect it will be picked up in preference to just specifying the class. Other people modifying the styles maybe forced to keep using that syntax. That is if they figure why their classes are not working.</p>
http://stackoverflow.com/questions/376248/css-selector-style/376347#3763471Answer by da5id for CSS Selector Styleda5id2008-12-17T22:52:26Z2008-12-17T22:52:26Z<p>It's neither good or bad, but it is (entirely) redundant.</p>
<p>EDIT: Actually, methinks it bad, 'cos it's potentially confusing (as in to humans, not parsers).</p>
http://stackoverflow.com/questions/376248/css-selector-style/376357#3763570Answer by Martijn Laarman for CSS Selector StyleMartijn Laarman2008-12-17T22:54:41Z2008-12-17T22:54:41Z<p>*.class will overwrite span.class even if span.class is more important. </p>
<p>I see no practical use for *.class, overwrites should be done with !important statement and only sparsely. </p>
<p>The only reason i use * is to remove all padding and margins, i actually always do this its the first css statement i write down always :).</p>
<p>There are also quite a few css hacks based on "* html" not working in IE6 and lower.</p>
<p>I'd flag it as bad practice.</p>
http://stackoverflow.com/questions/376248/css-selector-style/376371#3763710Answer by Ben Blank for CSS Selector StyleBen Blank2008-12-17T22:59:45Z2008-12-17T22:59:45Z<p>In terms of the CSS specs, your two examples have identical meaning. However, there are potential issues with it in practice. The biggest, that I can see, is that some browsers may mistreat <code>*</code> in terms of rule weighting and so potentially throw off precedence (though I do not know of any, off the top of my head, that do this — it just wouldn't surprise me). It is also widely held, though I can't quote chapter-and-verse at you, that class selectors should always include a specific tag name for performance reasons. It is apparently faster to apply a class selector with a tag name (<code>span.foo</code>) than without and faster to apply an ID selector without a tag name (<code>#bar</code>) than with.</p>
http://stackoverflow.com/questions/376248/css-selector-style/376386#3763860Answer by TomWij for CSS Selector StyleTomWij2008-12-17T23:05:57Z2008-12-17T23:05:57Z<p>Such things are for your personal choice, see what feels the most comfortable to you.</p>
<p>Please note that </p>
<pre><code>span..style { color : blue; }
</code></pre>
<p>might not work (try that out) where</p>
<pre><code>span.*.style { color : blue; }
</code></pre>
<p>just works.</p>
http://stackoverflow.com/questions/376248/css-selector-style/376390#376390-1Answer by Steve Perks for CSS Selector StyleSteve Perks2008-12-17T23:07:08Z2009-07-01T00:02:34Z<p>EDIT: This is pointing out that there could well be a performance issue. Some people seemed to think I was some sort on way out there rant...</p>
<p><hr /></p>
<p>While I don't know for certain, I'd like to give a word of warning! Consider the following identifier:</p>
<pre><code>div#foo a.bar {}
</code></pre>
<p>I hear that jQuery for example, which utilizes css, would in the above example traverse the DOM looking for divs first, then check to see if they have an id of #foo, then for an A tag before finally seeing if it's classed .bar.</p>
<p>My concern with the * is that the browser may traverse the DOM looking for ALL tags and then look for .bar, rather than inherently just looking for the attribute of 'bar' - that's two sweeps of the DOM rather than just the one. Might be an extremely minimal difference, but if your syntax hits the airwaves, that's a few more solar panels we need to install.</p>
http://stackoverflow.com/questions/376248/css-selector-style/399015#3990151Answer by Software Monkey for CSS Selector StyleSoftware Monkey2008-12-29T23:06:14Z2008-12-30T00:04:38Z<p>According to the <a href="http://www.w3.org/TR/CSS21/selector.html#universal-selector" rel="nofollow">CSS</a> specification:</p>
<blockquote>
<p>5.3 Universal selector</p>
<p>The universal selector, written "*",
matches the name of any element type.
It matches any single element in the
document tree.</p>
<p>If the universal selector is not the
only component of a simple selector,
the "*" may be omitted. For example:</p>
<p>*[lang=fr] and [lang=fr] are equivalent.
*.warning and .warning are equivalent.
*#myid and #myid are equivalent.</p>
</blockquote>
<p>Therefore, .TitleText and *.TitleText are equivalent. It is highly unlikely that any implementation would have a performance consideration for *.xxx which is not there for .xxx.</p>
<p>This then boils down to a question of style. And since the considerations of style raised by the other answers seem to be to be largely moot, I believe I will go ahead and continue explicitly specifying the *.</p>