I have
<h1 class='title home'> My Title </h1>
, and to apply styles I can use the following CSS:
.title {
font-size: 1.95em;
}
.title .home {
color: black;
}
While this method works, I am curious if there is a way to nest the home
style within the existing title
style. Is it possible to achieve something like this?
.title {
font-size: 1.95em;
.home {
color: black;
}
}