Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
323 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
6answers
306 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
92 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
1answer
321 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
2answers
31 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 ...
1
vote
3answers
60 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
36 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
4answers
57 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
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
479 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
233 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
2answers
63 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
26 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
3answers
127 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
211 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 ...