//html /* <div> hello <p> this is <span> css nesting</span> </p> </div> */ // scss nesting div{ color: red; p{ color: green; span{ color: gray; } } } You can see that every element tags are in a nested p...
sumanpaik.hashnode.dev1 min readNo responses yet.