https://medium.com/@elad/normalize-css-or-css-reset-9d75175c5d1e
https://cssdb.co/
Link to the normalize.css file
p {color: red;}
p.ex1 {display: none;}
p.ex2 {display: inline;}
p.ex3 {display: block;}
p.ex4 {display: inline-block;}
<p class="ex1">HELLO WORLD!</p>
<p class="ex2">HELLO WORLD!</p>
<p class="ex3">HELLO WORLD!</p>
<p class="ex4">HELLO WORLD!</p>
The padding
property is a shorthand property for:
This property can have from one to four values.
If the padding property has four values:
If the padding property has three values:
If the padding property has two values:
If the padding property has one value:
padding:10px;
CSS Animatable @ w3schools.com
Hover inside style property is not possible - Link - StackOverflow
Using border:0 - Link - StackOverflow
User Agent style sheet User agent style sheet @ StackOverflow
BootStrap Studio - Downloaded Tutorials
BEM - on Targets( file- check)
»>Amazing old and new css comparison Link«<
Emmet Cheat Sheet: https://docs.emmet.io/cheat-sheet/
https://stackoverflow.com/questions/20340138/remove-blue-border-from-css-custom-styled-button-in-chrome
inshort:
button:focus {outline:0;}
notes = [{},{},{},{}]
notes.sort((a,b)=>b.likes-a.likes) // will sort in descending order.
notes.sort((a,b)=>a.likes-b.likes) // will sort in ascending order.