Hi all,
Just looking for a quick clarification, I’m currently working on the Product Spec page and I’m trying to build my nav-bar, but getting the placement of the 3 links to the right of the logo is sending me into a spiral.
Can I just clarify that display: flex is applied to every item that falls within the parent container.
For example:
<header>
(parent container) <-- display flex appled here
<img>
(flex item)
<nav>
Preformatted text(flex item)
-
<ul>
(child to<nav>
) // is display:flex applied to this element? -
-
<li>
(child to<ul>
) // is display:flex applied to this element?
-
Cheers