Links to examples removed
Problem: Webkit browsers (Chrome and Safari) are having an issue with the rotation class I created on the page. If I remove the rotation class on the content div, the large images that appear on hover appear in the correct position.
Firefox has no issue with the rotated content div. I am on a Mac so I cannot test IE.
You’ve given the
.thumbnailclassposition:relativeso it’s creating it’s own position context. The fixed position you’ve given.thumbnail:hover spanwill work with it’s 0 top position as the top of the.thumbnailparent.Just take away
position: relativefrom.thumbnailand set thetopposition for.thumbnail:hover spanto the value you want it placed (relative now, to the top of the window, because it hasposition: fixed.Hope my explanation was clear enough!