Dmitry Tolmatov 38a2af29a6
05-descendant-combinator remove child combinator (#561)
Child combinator is not considered as a descendant combinator, therefore it should not be listed as a possible combinator.
2024-06-15 22:31:13 +01:00

15 lines
200 B
CSS

.container .text {
background-color: yellow;
color: #E00000;
font-size: 20px;
text-align: center;
}
/* Below are some other possible descendant combinators:
div p
div .text
.container p
*/