Web dev basics - css (part-1)
Basic Selectors
* selects every single element in our page. A general style people use in this is the following to remove the default styling browser adds.
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}...
basicsofhtml.hashnode.dev7 min read