Write Less CSS by Taking Advantage of Inheritance
Not every property is inherited but it tends to be anything that is typography related.
body {
margin: 0;
font-family: 'PT Serif';
line-hight: 1.6;
}
h1{
font-family: "Cinzel", serif;
}
margin: 0; gets rid of the extra-spacing that ...
ligalahhezron.hashnode.dev3 min read