The specificity tag has no wiki summary.
14
votes
4answers
346 views
Points in CSS specificity
Researching specificity I stumbled upon this blog - http://www.htmldog.com/guides/cssadvanced/specificity/
It states that specificity is a point-scoring system for CSS. It tells us that elements are ...
5
votes
7answers
135 views
Why does the hover pseudo-class override the active pseudo-class
The title basically says it all.
Suppose I have an element which I want to change color on :hover, but while clicked, I want it to switch back to its original color. So, I've tried this:
a:link, ...
5
votes
4answers
153 views
text-decoration:none doesn't remove text decoration
Consider the following code
HTML:
<span class='c1'>Home<sup id='id1'>[2]</sup></span>
CSS:
.c1
{
text-decoration:underline;
}
#id1
{
text-decoration:none !important;
...
5
votes
6answers
311 views
Best Practices for CSS Specificity?
I am creating a contact form that will be included on several different sites.
The styles of the contact form and the styles of the site will both be included and I can't very well predict the ...
4
votes
3answers
74 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 ...
4
votes
3answers
94 views
CSS question - Specificity and interitance
Why in the following code world is blue rather than red ?
The specificity of .my_class is 0,0,1,0, but it inherits the color of #my_id which specificity is higher (0,1,0,0).
HTML:
<p ...
3
votes
2answers
39 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 ...
3
votes
3answers
67 views
Using multiple classes in one element and specificity
Just wondering when you use multiple classes on the one element such as class="foo bar" and those classes are setup as below:
.foo {
margin-right: 10px;
}
.bar {
margin-right: 0px;
}
...
3
votes
6answers
123 views
CSS !important rule not overriding text alignment
a {
font-size: 8pt;
text-align: left !important;
text-decoration: none;
}
.main {
text-align: center;
}
<div class="main">
<a ...
3
votes
2answers
265 views
CSS Selector: Are parentheses allowed?
In the below example, I want to create a CSS rule that applies only to the header with the text "Blockhead".
<div class="gumby">
<span class="pokey"></span>
...
3
votes
1answer
195 views
CSS !important rule use, specificity
I am writing a bunch of PHP classes which will be used to create a Wordpress plugin, but can also be used in any other environment. After testing my script by itself, all seems well, but when I ...
3
votes
1answer
362 views
Different levels of CSS and the priority over each other
I was reading a decent article here on this topic: http://www.plus2net.com/html_tutorial/css-types.php
It came out highest ranked by Google for the search term css style sheets priorities.
However I ...
2
votes
4answers
60 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 ...
2
votes
2answers
33 views
Question about a confusing css specificity rule, (from the book SAMS Teach Yourself CSS in 24 Hours Second Ed.)
This is Rule 2 of 5 rules the book gives about how the browser determines which rule to apply in a conflict:
An id selector is the second most specific [after inline style attribute]. If there is ...
2
votes
2answers
187 views
important! in CSS specificity points
Looking at the CSS specificity specification, there is no mention about how many "points" the important! rule is worth.
When does one override another? What happens if one is declared after the ...
2
votes
1answer
388 views
issues with z-index and multiple !important rules
Has anyone ever encountered a case where a more specific !important declaration is not overwriting another !important declaration? Here is the base css:
.x-floating {
position: absolute !important;
...
1
vote
1answer
23 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 ...
1
vote
3answers
83 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 ...
1
vote
1answer
43 views
css selector specificity conflicts due to multiple stylesheets
Ok, I've been reading through stackoverflow css selectors. on the thread here what is the differences in this syntax? What does the ^= mean? What is it selecting? all?
[class^='Rating']
and
...
1
vote
2answers
29 views
Specific question on CSS Specificity
I have a very specific question on CSS Specificity, something which I could not clearly understand on;
http://coding.smashingmagazine.com/2007/07/27/css-specificity-things-you-should-know/
If I have ...
1
vote
4answers
62 views
CSS and specificity - class vs ids
Consider the following html:
<div id="rightBar">
<div class="barElement">
<div class="barText"><a href="#">Not underlined</a><br /></div>
...
1
vote
3answers
1k views
Overwrite CSS class selectors without !important
I'm just writing a javascript UI dialog for a web app. The problem is that users can create there own themes for the web app, which may include element css selectors (h1 {...}, div {...} etc.) which ...
1
vote
4answers
5k views
Css specificity :last-child
I would like to use the following to target the last link (a) of the last ul inside my div. So this is what came to mind:
#menu ul:last-child li a {
/*.....*/
}
I cant manually add a class ...
1
vote
3answers
486 views
Optimize CSS: Narrow Definition (#mytable tbody span.myclass) better?
I wondered whether or not a 'narrow' definition such as
#mytable tbody span.myclass
{
color: #ffffff;
}
is better/faster to parse than just
.myclass
{
color: #ffffff;
}
I read ...
1
vote
5answers
2k views
Using two css files in the same html file
Is it possible to use 2 CSS classes that have the same name for the selectors, etc. in the same HTML file? If so, how do you differentiate between the two when styling elements?
1
vote
2answers
238 views
What's the best way to create a style reset for only a portion of the DOM?
I'm trying to create a css reset that targets only my control. So the HTML will look something like this:
<body>
<img class="outterImg" src="sadkitty.gif" />
<div id="container" ...
0
votes
1answer
30 views
hyperlink css specificity inside a named element
http://jsfiddle.net/DkAqZ/9
HTML
<div id="container">
<div>default black text</div>
<div><a href="#">default red link</a></div>
<div ...
0
votes
2answers
65 views
I don't understand why an ID is not more specific than a class
I've got:
<div class="cardDisplay">
<img class="cardImg" id="cardImg4" alt="Card" src="picture.jpg" width="148" height="236.8" title="">
</div>
Here's my CSS.
...
0
votes
0answers
31 views
Cascade non-inherited properties(e.g. text color) to child elements in webpage without explicitly telling child elements to inherit from parent
is there a way to cascade non-inherited properties like text color to child elements in a webpage without explicitly telling child elements to inherit from parent node
I am trying to write a small ...
0
votes
2answers
63 views
Resetting and Overrulling CSS under a certain element
I have element that could be injected into any page using a Firefox Addon.
Naturally, it and its ancestors are affected by the CSS rules defined on that page.
I can get so far by simply being ...
0
votes
2answers
53 views
CSS inheritance and specificity
I'm having trouble with a css stylesheet. I've narrowed it down to be about inheritance and specificity in the css styles.
Right now (simplified) I've got an HTML <body> that looks like the ...
0
votes
3answers
139 views
Specificity CSS issue
Going insane with CSS having a specificity problem.
HTML.
<div id="page_content">
<div id="page_left" class="left">
<div id="domain_l_top">
...
0
votes
4answers
453 views
jquery : alternate row colour in table except cell with class to keep background colour
I am new to jquery. I have this in my code:
$("tbody tr:odd ").addClass("alt");
with css:
tbody tr.alt td {
background-color: #e6EEEE;
}
I have a cell in table with
<td ...
0
votes
4answers
224 views
IE ignoring CSS even though it has higher specificity
I have some sliding door button css.. I use a button tag and two inner spans.
I have this to specify the background image of a normal button;
button span {
background: url(button_right.png) ...
0
votes
4answers
53 views
Change specificity by child
I'd like to integrate a theme tag to my elements so they appear in diffrent colours. But since the css selectors have the same css specificity the latest overrides the earlier defined rule.
this is ...