In CSS, specificity is a measure applied to a style rule that provides a ranking, based on its selector, for resolving conflicts between its style declarations and the declarations of other style rules.

learn more… | top users | synonyms (1)

1
vote
1answer
91 views

can an entire css “.class” have it's specificity as !important? [closed]

I am working heavily in jQuery UI widgets and themeing is becoming hard because of an oversight that I need to work around. Consider this problem: <div id="node" class="ui-widget"> ...
6
votes
3answers
124 views

How to view browser's calculated CSS specificity?

Greetings: I have spent days trying to find a tool that would display the exact CSS specificity number for each CSS rule as calculated by the browser. I have already looked at many online resources ...
1
vote
2answers
20 views

CSS Specificity Body - Form

I have several pages and a single external style sheet. The CSS file has the following: body { /*Set background image*/ background: url("../img/background/main.jpg"); padding: 20px 20px; ...
1
vote
1answer
29 views

CSS specificity confusion

I have following markup: <div class="breadcrumbs"> <span id="links"> <a href="/home.html" class="pointer">home</a> <span>&gt;</span> ...
0
votes
3answers
101 views

Calculating CSS selector specificity for :not() pseudo-class

I already know how to calculate selector specificity for CSS (the a/b/c/d mentioned in specs). However, I am having trouble figuring how to calculate it for the :not() pseudo-class. See the following ...
0
votes
4answers
52 views

CSS class inside ID wins

Two nested div's, the outer is identified by the ID and the inner is identified by a class: <div id="theID"> <div class="aClass">Class inside ID</div> </div> Let's say ...
0
votes
2answers
55 views

Specificity for input[type=“text”]

How can I add specifity to something that reads: input[type="text"] { color:red } I want something like: #my_id input[type="text"] { color:red }
3
votes
2answers
118 views

Table text hover and link color

I have html table and layout for it (something like that, also i use haml+sass): .zebra{ .zebra-stripe{ &.zebra1{ a{ color: red; } a:hover{ color: blue; } } } my htm table ...
2
votes
1answer
100 views

Why is the use of `!important` discouraged?

Several answers tagged css discourage the use of !important in favor of specificity. Why?
1
vote
1answer
57 views

Lower specificity style being applied, instead of higher specificity hover

As you can see here: The selector .wrapper-dropdown .label is being applied, instead of the higher specificity .wrapper-dropdown .dropdown li div.liwrap:hover Why is that? I'm using chrome on osx ...
0
votes
1answer
37 views

Tersest way of increasing CSS selector' class-level specificity without altering selector scope

I'm currently elaborating a variation on Nicole Sullivan's OOCSS grids module that only requires a single container class to determine the layout of immediate descendants. I'm aware this bears the ...
2
votes
1answer
50 views

Bizarre css selector combination

This is my code: HTML <div id="corner"> <div id="cornerbox"></div> </div> CSS #corner { background-color: red; width: 200px; height: 200px; } #corner ...
2
votes
2answers
149 views

Precedence in css conflicts

I learned about selector precedence from this tutorial. I have trouble understanding the behavior of this in one case. I have an element in HTML: <input class="top_bar_login_form_input" ...
0
votes
2answers
60 views

Grouped Class Selectors and CSS Specificity

Which class selector rules have a higher specificity for 10 marks? .A.E.F .C .D OR .A .B .C span HTML: <div class="A E F"> <div class="B"> <div class="C"> ...
3
votes
1answer
49 views

CSS property specificity

1) #divID input[type='text'] { height:30px; } 2) #divID .ClassName { height:40px; } For a text box in a div, I have the above styles defined. 2 is more specific than ...
0
votes
1answer
165 views

CSS Specificity - how to overlap twitter-bootstrap

I just stumbled upon css specificity, while trying to change the pagination style of my theme. I'm using twitter-bootstrap as a base-template, but I want to change pagination. Specifically, I want ...
0
votes
2answers
83 views

Which background-image takes precidence..media query or css?

My question is about background-images. I was designing a home page for iPhone screen and I wanted to use a slightly different image for the mobile version. My media query was not in a separate css ...
2
votes
1answer
98 views

Is it error-prone to use ID-attribute selectors (not #id) on body elements to namespace CSS files?

I'm using Sass to compile my SCSS stylesheets into a single assembled.css to reduce HTTP requests. To namespace individual pages for styling, I wrap each page-specific CSS file in an ID selector for ...
0
votes
2answers
159 views

CSS Specificity Rules

I am using twitter bootstrap (TB) and it seems like their CSS Rules are taking precedence when they shouldn't. I created this fiddle to show the problem: http://jsfiddle.net/whoiskb/Za2TB/ HTML ...
1
vote
1answer
51 views

How does CSS handle specificity tie?

Consider a <div class="well well-large well-small" /> with the following styles from twitter bootstrap https://github.com/twitter/bootstrap/blob/master/less/wells.less // Base class .well { ...
0
votes
3answers
138 views

How to prevent a HTML element from being targeted by a CSS rule?

Here is a difficulty I am trying to solve. I am working inside a client's page to develop a scroller interface. Basically, I cannot change the doctype, the surrounding elements and the stylesheets or ...
2
votes
1answer
66 views

CSS specificity and/or inheritance with ancestors

I'm trying to theme some buttons according to their ancestors (not parents, especialy), so... I have the following HTML structure <body class="theme-a"> <section class="container"> ...
0
votes
1answer
288 views

Why is this CSS selector not more specifc than the other?

Given a html fragment of: <button id="foo" onclick="window.location.href='/foo/';" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only btn btn-primary" type="button" ...
5
votes
1answer
108 views

Efficient Algorithm To Compare Specificity Of CSS Rules

I was wondering what an efficient algorithm would be in the following scenario: Given a parsed set of css rules, eg. p.pStyle{margin-bottom:20px;font-family:Arial;} p{font-family:Verdana;} ...
1
vote
3answers
60 views

two css rules “seemingly” have same specificity weight but doesn't produce the same result

Ok, I'm trying to understand the CSS cascade and specificity as a "science" and not always leaving it up to "hit or miss" approach. I hope someone will help me out. I have a rule: .bluebutton ...
4
votes
6answers
169 views

CSS precedence logic

In this example: http://jsfiddle.net/Ja29K/ <style> /* Default links */ a { color: #0F0; /* Green */ } /* Header links */ #header a { color: #F00; /* Red */ } /* Login ...
28
votes
4answers
564 views

CSS Specificity Filter

This is a long shot, but is there a tool available that optimizes CSS selectors by removing unneeded specificity? I find that when I write CSS, I deliberately make my selectors more specific than ...
-1
votes
1answer
36 views

Changing Specificity

<html> <head> <style type="text/css"> #sidebar p { font-family: Verdana; font-size: .9em; } #sidebar .intro { font-family: Georgia; ...
0
votes
1answer
889 views

css border-collapse not applying

I'm having trouble getting my inner table to not show the borders. in the html below, it is the table <table class="billing_history" id="billing_history0" >. I want the table to ultimately ...
1
vote
2answers
75 views

css specificity for hovering

I'm having css specificity issues. I want the <td> style to be colored different if there are 'no bills', so I set the style with an if statement. If there are no bills, the style is style = ...
2
votes
3answers
125 views

CSS class repetition to increase specificity

According to the CSS docs: http://www.w3.org/TR/CSS21/cascade.html#specificity Specificity is defined by (amongst other things) the number of attributes and pseudo-classes in the selector. So, my ...
1
vote
2answers
148 views

What is the specificity of the attribute selector?

I'm wondering what the specificity of the attribute selector is. For example: Id = 100 points Class = 10 points Html Tag= 1 point Example: /* this specificity value is 100 + 10 + 1 = 111 */ ...
1
vote
2answers
130 views

Is there an JS library that orders CSS selector texts according to specificity? [duplicate]

Possible Duplicate: Sorting a set of CSS selectors on the basis of specificity I need a JS library that order CSS selector texts from most specific selector text to the less specific ...
4
votes
2answers
96 views

CSS specificity or inheritance?

I've looked at similar questions here but I haven't found one particular to my case. If I read this article correctly: http://css-tricks.com/specifics-on-css-specificity/ then what is happening ...
0
votes
2answers
126 views

CSS specificity and deprecated HTML attributes

What would be the implied specificity of the following style applied, if any: <iframe src="..." height="300" width="500"></iframe> Does it still get specificity = 1,0,0,0 and override ...
1
vote
0answers
59 views

find out specificity of a css selector in javascript [duplicate]

Possible Duplicate: Sorting a set of CSS selectors on the basis of specificity does anyone know of a way to find out the specificity of a css selector in javascript? is there some library ...
8
votes
1answer
182 views

Order by CSS Specificity

My main goal is to try to reorder a CSS style block based on specificity. I previously had helped from SO and I managed to produce this function. See gist. Here is an example: function ...
6
votes
2answers
154 views

Order CSS based on Selector Specificity

I have parsed a given CSS file/string into a JSON object like so: { "#header": { "color": "#000000" }, "#header h1": { "color": "#000" }, "h1": { "color": ...
1
vote
3answers
219 views

css3 nth-child specificity

How come these two don't come out equivalent? The first one shows a green row, while the second doesn't. The only difference is in html c Furthermore, what is the specificity of the nth-child ...
4
votes
1answer
3k views

CSS specificity, Media Queries and min-width

I'm redesigning my blog with responsive web design in mind, and the "mobile first" method - In short I'm trying to use min-width to avoid any kind of replication or css.. no display:none's etc.. My ...
0
votes
0answers
101 views

CSS rule with higher specificity is ignored? [closed]

I encountered this problem while I'm adding new rules to an existing stylesheet. The original stylesheet contains a rule #side ul.author li.subj. I added .user #side ul.author li.subj. Surprisingly, ...
0
votes
5answers
1k views

CSS - Simple specificity issue - '#div-id ul' - won't override list-style of 'ul'

This is a very simple issue of CSS specificity, but I really can't figure it out somehow. In my stylesheet, I have a simple rule that removes the list-style from lists: ul { list-style: none; } ...
0
votes
3answers
818 views

Why can't I override existing pseudo-elements?

I have two CSS rules following each other: .some td:first-child:before { content:url('path/to/image.png')" " ; } .some .other:before { content:url('path/to/image2.png')" " ; } Here's the ...
0
votes
2answers
156 views

!important specificity override not working

I was designing a nav bar button, when I got a specificity conflict in the opacity. I used the !important override, but that doesn't seem to be working. Any clues as to the reason? HTML: ...
1
vote
1answer
125 views

Why can't I beat an ID with multiple classes? [duplicate]

Possible Duplicate: Points in CSS specificity Here's an example of what I mean: http://jsfiddle.net/BTJXt/9/ Somehow 1 ID will beat a seemingly infinite number of classes. How is this ...
1
vote
1answer
226 views

Scoring and ranking specificity rules

I have two competing rules in my stylesheet: #parent > div { color: blue; } #child { color: red; } Here's the relevant HTML: <div id="parent"> <div id="child">What color ...
3
votes
2answers
139 views

How element selector is more specific than id selector?

As I understand elements are least specific. (element vs id). Please help me in understanding the specificity of selectors generally. <div id="container"> <div id="firstDiv">FIRST Div ...
5
votes
3answers
233 views

CSS Specificity - How does “it” decide which styles to apply?

In a nutshell, how does CSS determine when to apply one style over another? In the past year, I have been working with a lot of JavaScript and the CSS based selectors used in jQuery pushed me to ...
1
vote
3answers
2k views

How can override a CSS class to that nothing get applied?

What I am actually trying to say and sorry if the title if weired is that I have a framework (Richfaces) that is applying it's own style. I have an company CSS and I am not a CSS expert all I need is ...
3
votes
3answers
294 views

More specific CSS rule is not working

In my following code, I have defined more specific rule for h1 as #inner h1 and less specific rule as #container h1 is also defined. But if #container h1 is put after #inner h1 then it takes effect ...

1 2