I need a little help, I’m learning CSS, I wanted to simple remove all round corners so I used this code which worked but now how can I make something round in a selected area.
Also I’m building a child theme, it would take much longer if I was to remove the round corners 1 by 1.
If you are already using !important to override !important there is a good chances you are learning the wrong way.
Most editors have a “Search & Replace” function which can speed up such a task considerably.
Using “lazy” methods like *{border-radius:0 !important} will inevitably, as you have already found, lead to problems further down the line, avoid where possible. !important should really only be a last resort, not to be used liberally.