분류 전체보기
Mac 터미널에서 VSCode 실행시키기
1. Vsc 설정 Vscode에서 cmd+shift+p 입력 후 shell 입력 Shell Command: Install 'code' command in PATH 클릭 위 내용이 뜨면 설정 완료 2. 터미널 실행 터미널 실행 후 원하는 디렉토리로 가서 아래 명령어 입력 -> code . 실행완료
[dropdown] 드롭다운 메뉴 구현 ( 슬라이드 애니메이션 추가 )
[html] [css] .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 216px; box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); z-index: 1; overflow: hidden; max-height: 0; transition: max-height 0.7s ease; } .dropdown-content.show { max-height: 500px; /* 적당한 높이로 설정해주세요 */ } .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: ..