i know, inline styles are "evil", but there are inserted in html with javascript (jQuery animation). so, is it possible?

link|improve this question

0% accept rate
Does printing a webpage render the JS? Sorry, not much help just a question - wouldn't have thought it did... – kieran May 9 '11 at 11:05
i thing not, but when the page loads, the js will be executed and the styles added. so when i print the page, these styles still been in the dom – Juanolo May 9 '11 at 11:15
feedback

2 Answers

This:

  <div style="background: red;">
        The inline styles for this div should make it red.
    </div>

Can be overridden with:

div[style] {
   background: yellow !important;
}

You can add !important to any css property

link|improve this answer
Works in all good browsers, not ie6 – Blowsie May 9 '11 at 10:53
I thought inline styles could not be overidden, even by !important? – Kyle Sevenoaks May 9 '11 at 11:04
at least in ff does – Juanolo May 9 '11 at 11:18
The combination of the attr selector and the !important is key. – Blowsie May 9 '11 at 11:32
feedback

Try putting !important between the value and the semi-colon in your print stylesheet:

body {
    background-color: #0f0 !important;
}
link|improve this answer
but, supports ie !important? – Juanolo May 9 '11 at 11:00
Yes it does. .. – ZippyV May 9 '11 at 11:28
indeed it does, however to override the style in some browsers you need to use the attr selector, which ie6 does not support – Blowsie May 9 '11 at 11:31
Which browsers? – ZippyV May 9 '11 at 15:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.