# HTML 준비중 준비중 준비중 # CSS .menu-columns{ position: fixed; left: -75px; } 살짝 감추고 있다가 마우스를 대면 나타나는 효과와 스크롤 내려도 같이 이동하게 하기 위해 position:fixed를 사용합니다. .menu-columns__ul__item{ width: 120px; height: 50px; border-radius: 5px; background-color: white; /* -- item마다 아래 간격주기 -- */ margin-bottom: 15px; /* -- 마우스가 올라가면 커서 모양이 바뀜 -- */ cursor: pointer; /* -- span text 중앙 정렬 -- */ text-align: center; line-heigh..