Hi there peeps,
The “Safari adjacent sibling bug fix”…
[color=navy]body {
-webkit-animation: bugfix infinite 1s;
}
@-webkit-keyframes bugfix {
from { padding: 0; } to { padding: 0; }
}
[/color]
…is not not working in Chrome, in conjunction with the “pseudo hover class”. 
If you look at my example here…
…you will see that the hover effect only works with the thumbnail on the far right, in that browser.
So basically…
[color=navy]
element:hover+element { }
[/color]
…works as expected, but…
[color=navy]
element:hover+element+element { }
[/color]
…sadly fails. 
coothead
ralphm
2
Hi there ralph.m,
thanks for your kind reply. 
Obviously, the use of different CSS methods will work, but I was looking for a method that would resolve Chrome’s…
adjacent sibling bug in conjunction with the “pseudo hover class”
coothead
Hi there peeps,
changing the “adjacent sibling selector" to the "[url=http://reference.sitepoint.com/css/generalsiblingselector]general sibling selector” resolves the problem. 
So this…
[color=navy]
#b:hover+#c+#d+#e+#a {}
[/color]
…simply becomes…
[color=navy]
#b:hover~#a {}
[/color]
Also the “Safari adjacent sibling bug fix”…
[color=navy]body {
-webkit-animation: bugfix infinite 1s;
}
@-webkit-keyframes bugfix {
from { padding: 0; } to { padding: 0; }
}
[/color]
…is now redundant and Google Chrome is a happy bunny again. 
coothead