w3.css 반응형 헤더 CSS를 사용하여 반응형 헤더를 만드는 방법을 알아보자. 반응형 헤더 만들기 1단계) HTML 추가 <div class=”header”> <a href=”#default” class=”logo”>CompanyLogo</a> <div class=”header-right”> <a class=”active” href=”#home”>Home</a> <a href=”#contact”>Contact</a> <a href=”#about”>About</a> </div> </div> 2단계) CSS 추가 /* Style the header with a grey background and some padding */ .header { overflow: hidden; background-color: #f1f1f1; padding: 20px 10px; } /* Style the header links */ .header a { float: left; color: black; text-align: center; padding: 12px; text-decoration: none; font-size: 18px; line-height: 25px;…