links to sections in the same page
i want to link my navbar to sections in the same page and when that sections comes into the viewport ,the list element linked to that section should have a change in color, how do i do this using css?
body:has(#browse-topics:target) nav a[href="#browse-topics"] {
color: yellow;
}