odin-css-foundations/05-descendant-combinator/style.css

6 lines
102 B
CSS

div > p {
background-color: yellow;
color: red;
font-size: 20px;
text-align: center;
}