nnnakuuul
nnnakuuul
KPCKevin Powell - Community
Created by nnnakuuul on 7/8/2024 in #front-end
What is the difference?
What is the difference between
flex-direction: row-reverse;
flex-direction: row-reverse;
and
flex-direction: row;
justify-content: flex-end;
flex-direction: row;
justify-content: flex-end;
other than the change in order of the flex-items?
4 replies
KPCKevin Powell - Community
Created by nnnakuuul on 6/15/2024 in #front-end
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?
<nav class="navbar">
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#browse-topics">BROWSE TOPICS</a></li>
<li><a href="#how-it-works">HOW IT WORKS</a></li>
<li><a href="#faqs">FAQS</a></li>
<li><a href="#contact">CONTACT</a></li>
<li><a href="#pages">PAGES</a></li>
</ul>
</nav>
<nav class="navbar">
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#browse-topics">BROWSE TOPICS</a></li>
<li><a href="#how-it-works">HOW IT WORKS</a></li>
<li><a href="#faqs">FAQS</a></li>
<li><a href="#contact">CONTACT</a></li>
<li><a href="#pages">PAGES</a></li>
</ul>
</nav>
16 replies
KPCKevin Powell - Community
Created by nnnakuuul on 6/11/2024 in #front-end
box-sizing: border-box
No description
7 replies