hover를 이용한 것들
카테고리 없음

hover를 이용한 것들

#DropDown tap만들기

hover를 사용하여 네비게이션 내려오게 만들기

 

항상 우선적으로 행해야하는 것은 구성을 어떻게 할 것인지 생각하고 html 구조를 짜는 것이다.

 <div class="dropdown">
        <input type="button" value="Real Estate Type" class="dropdown-btn">
        <div class="dropdown-submenu">
            <a href="#none">이거슨 네비게이션</a>
            <a href="#none">이 것도 네비게이션</a>
            <a href="#none">저것도 네비게이션</a>
            <a href="#none">this is english version</a>
            <a href="#none">how to use this nav</a>
            <a href="#none">ok oh yeah</a>
            <a href="#none">this is good time</a>
        </div>    
    </div>

버튼과 그 아래 배치될 navigation을 배치하게되는데 그걸 감싸줄 container을 배치해준다.