/ Published in: CSS
                    
                                        
In Webkit, when a general (x ~ y) or adjacent sibling selector (x + y) is combined with a dynamic pseudo class such as :hover, :focus, :checked, etc., the function breaks. This code snippet fixes it.
                
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
body {-webkit-animation:bugfix infinite 1s;}
@-webkit-keyframes bugfix { from{white-space:default;} to{white-space:normal;} }
Comments
 Subscribe to comments
                    Subscribe to comments
                
                