Learn HTML by Building a Cat Photo App - Step 79

Hi Guys, I can’t get through this step. What could be wrong? Anybody please

footer {
font-size: 14px;
a {
color: black;
}

@rabiatmustaphaa welcome to the community!

Recall the syntax of a CSS style rule?

  1. For a single target element:
selector {
  property: value;
}
  1. For multiple target elements:
selector1, selector 2 {
   property: value;
}
1 Like

Hi, thank you for responding

The color changed but it still does not pass

You have erased the } from the footer block of code

2 Likes

The style rule for footer and a should be defined separately.

1 Like

It worked. Thank you

It worked, many thanks

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.