.splash-section {
font-size: 18px;
}
.splash-section h1 {
font-size: 1.5em;
}
in this example, font size of h1 will be 18 * 1.5 = 27 and h1 is in .splash-section class, so my question is what if h1 is not member of splash-section class, will h1 font-size still 27 or change to 24 (16 * 1.5) ? like below
.splash-section {
font-size: 18px;
}
h1 //not member of .splash-section
{
font-size: 1.5em;
}