Tribute Page feedback - need help

Tell us what’s happening:
So I manage in 2 hours to finish this with little google and search, so that the knowledge can refresh. Even though I manage to pass the test cases, I still want to improve a little bit. Any feedback is appreciated.

I still have two questions: in the section tag with id “tribute-info”, how can I make the background only cover the ul list without extending to the right and left sides?
And how do you suggest I can improve when I minimize the browser? Thanks!

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36.

Challenge: Build a Tribute Page

Link to the challenge:

Hi,

Just set a background color on the ul.

ul { background-color: somecolor; }
or set in on the li and give each li a separate background color.

If this is your first page and you did it in two hours, well done. I would work on the line-height though, when the width of your page decreases, the lines crash into each other. In the next projects you’ll be using media queries and this will help you to make this page more responsive.

Greets,
Karin

Thanks so much Karin. I keep forcing myself to modify the parent section tag instead of just giving the ul the css. I will continue the next projects and come back to decorate this one again.