Plus I'm not super keen about not using the > selector when it'll be too easy for other developers on the project to forget that CSR breaks under that case. My application works fine using 4.4.1 and only breaks
3) Child selector (>)It is denoted by >. The child selector selects all the elements that are children of a specified element. It can select more than one element.Syntax:element1 > element2{ //CSS styling } Example:<!DOCTYPE html> <html> <head> <style> div > p { font-weight:...