π©π»π»STUDY/CSS
[CSS] κ°μμ νμλ‘ '|' λ§λλ λ°©λ²
jmjm
2021. 7. 6. 18:30
λ©λ΄ | λ©λ΄ | λͺ¨μμ λ°λͺ¨μμ κ°μμ νμλ‘ λ§λλ λ°©λ²
<header>
<nav>
<h1>LOGO</h1>
<ul>
<li><a href="/">menu1</a></li>
<li><a href="/">menu2</a></li>
<li><a href="/">menu3</a></li>
<li><a href="/">menu4</a></li>
</ul>
</nav>
</header>
* { margin: 0; padding: 0; box-sizing: border-box; }
li { list-style: none; }
a { text-decoration: none; color: inherit; }
nav { width: 800px; height: 40px; margin: 0 auto; background: #e1e1e1; display: flex; }
nav h1 { align-self: center; font-size: 14px; }
nav ul { margin-left: auto; display: flex; justify-content: center; align-items: center; }
nav ul li { position: relative; margin: 0 20px; }
nav ul li::before { display: block; content: ''; position: absolute; top: 0px; bottom: 0px; right: -20px; width: 4px; background-color: #888; }
/* beforeμ heightλ₯Ό μ£Όμ§ μμλ top/bottomμ κ°μ μ£Όλ©΄ νμ±λλ€. */