How can target multiple elements under the same div without having to repeat the div's name? I know I am able to select multiple elements of a parent div using the following CSS code,
.container h3,
.container p {
text-align: left;
}
But, is there any other short-hand way to target the h3
and p
tags under the .container
div?