I’m stuck on this assignment in Basic CSS and it wouldn’t take it
.red-text {color: red;} p font-size: 16px;CatPhotoApp
Click here to view more cat photos.
I’m stuck on this assignment in Basic CSS and it wouldn’t take it
.red-text {color: red;} p font-size: 16px;Click here to view more cat photos.
You don’t have it formatted correctly.
p {
font-size 16px;
}
If you want to change just the p elements within a class, you do this:
.class p {
font-size: 16px;
}
Hope this helps