I'v tried adding some css specific for the rel attribute, and demoing it in chrome. Example:

pre[rel="js"]:before {
   content:"JavaScript";
}

pre[rel="css"]:before {
   content:"CSS";
}

Then of course adding HTML to it. In chrome, it all turns out to have "JavaScript" before, ignoring the rest of the CSS, although on Firefox it work's just fine.

The page I did this on.

link|improve this question
Not that this should affect CSS rendering, but it's not valid to have a rel attribute on <pre> elements. What version of Chrome are you on? – BoltClock Dec 24 '11 at 0:07
Works fine on my Chrome 16. – alex Dec 24 '11 at 0:07
What's the problem? It seems to work fine in Google Chrome. – Ayman Safadi Dec 24 '11 at 0:08
Works for me on Chrome 16. What version are you using? – Zoltan Toth Dec 24 '11 at 0:10
feedback

1 Answer

Huh. That's really weird. Definitely a Chrome bug.

I can reproduce your problem reliably in Chrome 16.0.912.63

Adding

pre[rel] {
  font-size:1em;
}

to the stylesheet clears the problem, but the clause seems to need to contain at least one valid style.

There's no reason I can think of why this should be intended behaviour.

Note that had you used a class instead of the invalid use of the rel attribute, the problem would not have occurred. e.g. Use

<pre class="js code">

and

pre.js:before {
    content:"JavaScript";
    padding-right:434px;
}

etc.

link|improve this answer
Thank's! Simply adding the "font-size:1em;" thingy, fixed the whole thing, have absolutely no idea why. But thank's man. And thumbs up or somewhat of a system to reward you :)? – user1096484 Dec 24 '11 at 22:11
feedback

Your Answer

 
or
required, but never shown

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