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

6 lines
102 B
CSS
Raw Normal View History

2023-12-28 17:52:48 +00:00
div > p {
background-color: yellow;
color: red;
font-size: 20px;
text-align: center;
}