Issue
instead of putting "border-radius: 10px;" for every single element, is there a way to make all borders rounded?
I'm new to programming so I'm not sure what to try. I'm also using this for something kind of stupid so I don't really wanna put in a ton of effort to learn the language and figure it out lol
Solution
It's as simple as
*{
border-radius: 10px;
}
The *
selector is used to select all elements and apply styling on them. You can read more about it here and about selectors here.
Answered By - Ravi Arora
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.