Skip to content Skip to sidebar Skip to footer

Bootstrap Styles Not Applying Within A Shadow Dom On Chrome 35

I've working with Bootstrap 3.1.1 and Polymer 0.2.4 for a long time and, suddenly -it may have been since the last Chrome auto-update (Version 35.0.1916.114)- Bootstrap stopped sty

Solution 1:

What you're seeing is the difference between native Shadow DOM and the polyfill. The first example works because the styles are not crossing a shadow dom boundary. They're just applied to the light dom.

The solution is to include the stylesheets in your element. More info:

Post a Comment for "Bootstrap Styles Not Applying Within A Shadow Dom On Chrome 35"