Reputation: 3043
I'm trying to debug why a component element is rendering differently on IE11 but the DevTools for both IE and Edge are finding no css in the Styles or Computed tab. How to I debug this properly?
Left to right: IE11, Edge, Chrome
Edit 1:
It appears to be any component under router-outlet
Upvotes: 1
Views: 833
Reputation: 13984
under the computed tab, click the silhouette in {}
. That will show you all of the styles for that element. For whatever reason, the logic for showing the specific rules that apply to that element from your stylesheet appears to be broken.
Upvotes: 1