I understand the dot in css is class but what is h2
dot h1
supposed to be selecting in the following I have found in a page?
h1 {
font-size: 30px;
line-height: 32px;
}
h2.h1 {
font-size: 36px;
line-height: 40px;
}
.title.title_size_medium h1 {
font-size: 38px;
line-height: 38px;
}
The h1
tag itself is never used in the page.
Many Thanks