Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a situation where the .css in my head tag is getting overridden by css that's being inserted dynamically into the head by a javascript library.

The .js library automatically appends the new .css link to the end of the head tag so it is always put on top of my styles.

share|improve this question
1  
Have you tried adding !important to the CSS declarations where the javascript is overriding? webdesign.about.com/od/css/f/blcssfaqimportn.htm – snkmchnb Oct 7 '10 at 21:02
Having to add "!important" all over the place is a really sad hack. To me this calls for a search for a better library. Either that, or accept what the library does and style your pages to "get along". – Pointy Oct 7 '10 at 21:11

1 Answer

You have several options:

  1. Use a different JavaScript library
  2. Make sure all your rules have a higher specificity than the ones added by the library
  3. Learn about !important
share|improve this answer
+1 a quick note : CSS being added to the end of head, or added later by javascript doesn't cause it to be put 'on top of' other stylesheets. Style is applied according to specificity of the selector.. – Ravindra Sane Oct 7 '10 at 21:33

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.