RRRohit Rameshwar Dongareinrohitrdongare.hashnode.dev·Apr 21, 2023 · 1 min readSelectors in CSSUniversal Selector It is used to apply CSS on entire page <style> *{ background-color: aqua; color: brown; } </style> Individual Selector It is used to apply CSS on individual elements oh HTML body <style> p,h1{ ...00