드롭다운 메뉴는 사용자가 사전 정의된 목록에서 하나의 값을 선택할 수 있는 토글가능한(toggleable) 메뉴입니다.
The .dropdown class is used to indicate a dropdown menu.
Use the .dropdown-menu class to atually build the dropdown menu.
To open the dropdwon menu, use a button or a link whti a class of .dropdown-toggle and data-toggle="dropdown".
.dropdown
클래스는 드롭다운 메뉴를 나타냅니다.
드롭 다운 메뉴를 열려면 .dropdown-toggle
클래스와 data-toggle = "dropdown"
속성이 있는 버튼 또는 링크를 사용합니다.
.caret
클래스는 버튼이 드롭다운임을 나타내는 캐럿 화살표 아이콘을 만듭니다.
드롭다운 메뉴를 실제로 빌드하려면 .dropdown-menu
클래스를 <ul>
요소에 추가하십시오.
.divider
클래스는 얇은 가로 테두리로 드롭다운 메뉴 내의 링크를 분리하는 데 사용됩니다:
The .divider class is used to separate links inside the dropdown menu with a thin horizontal line:
드롭다운 메뉴 내부에 헤더를 추가하기 위해 .dropdown-header
클래스를 사용합니다.
The .dropdown-header class is used to add headers inside the dropdown menu:
.active
클래스로 특정 드롭다운 항목을 강조 표시 합니다(파란색 배경색 추가).
드롭다운 메뉴에서 항목을 비활성화 하려면 .disabled
클래스를 사용합니다(마우스 오버 시 밝은 회색 텍스트 색상과 “주차 금지”아이콘이 표시됨):
the .active class adds a blue background color to the active link.
The .disabled class disables a dropdown item (grey text color).
드롭다운을 오른쪽 정렬하려면 .dropdown-menu
를 가진 요소에 .dropdown-menu-right
클래스를 추가합니다.
Add the .dropdown-menu-right class to .dropdown-menu to right-align the dropdown menu:
드롭다운 메뉴를 아래쪽이 아닌 위쪽으로 확장하려면, class = "dropdown"이 있는 <div> 요소를"dropup"
으로 변경합니다.
The .dropup class makes the dropdown menu expand upwards instead of downwards:
스크린 리더를 사용하는 사람들의 접근성을 높이려면,
드롭다운 메뉴를 만들 때 role
및 aria- *
속성을 포함해야 합니다.
The .dropup class is used to indicate a dropdown menu.
Use the .dropdown-menu class to actually build the dropdown menu.