108k views
5 votes
I need help in Jumbotron: Paragraph. The question is:

Make a new CSS rule that selects the p element inside ...
Set the color to #fff
Set the font-size to 20px

1 Answer

5 votes
.jumbotron p
{
color: #fff;
font-size: 20px;
}
User MattTheHack
by
7.9k points