I want to apply some css on the basis of dir rtl attribute on body tag
My earlier implementation was below one which was not working
:not([dir="rtl"]) nav > ul > li:last-child a {
padding-right: 0;
margin-right: 0;
}
By mentioning body tag its working fine and I am not able to get the reason of same. Any help will be highly appreciated.
body:not([dir="rtl"]) nav > ul > li:last-child a {
padding-right: 0;
margin-right: 0;
}