반응형

2017/06/08 3

css 수직 탐색 막대 예제

수직 탐색 막대 예제배경색이 회색 인 기본 세로 탐색 막대를 만들고 사용자가 마우스를 움직일 때 링크의 배경색을 변경합니다.집뉴스접촉약예ul { list-style-type: none; margin: 0; padding: 0; width: 200px; background-color: #f1f1f1; } li a { display: block; color: #000; padding: 8px 16px; text-decoration: none; } /* Change the link color on hover */ li a:hover { background-color: #555; color: white; } 활성 / 현재 탐색 링크현재 링크에 "활성"클래스를 추가하여 사용자가 어떤 페이지에 있는지 알 수있게하십..

IT/css 2017.06.08

css Vertical Navigation Bar

Vertical Navigation Bar 수직 탐색 모음을 만들려면 위 코드와 함께 목록 안의 요소의 스타일을 지정할 수 있습니다. li a { display: block; width: 60px;} Home News Contact About A background color is added to the links to show the link area.Notice that the whole link area is clickable, not just the text. HomeNewsContactAboutA background color is added to the links to show the link area.Notice that the whole link area is clickable, not j..

IT/css 2017.06.08

css Navigation Bars

Navigation Bars 사용하기 쉬운 탐색 기능은 모든 웹 사이트에서 중요합니다. CSS를 사용하면 지루한 HTML 메뉴를 멋진 탐색 모음으로 변형 할 수 있습니다. 탐색 모음 = 링크 목록탐색 모음에는 표준 HTML이 기본으로 필요합니다. 이 예제에서는 표준 HTML 목록에서 탐색 모음을 작성합니다. 탐색 바는 기본적으로 링크 목록이므로 및 요소를 사용하면 완벽하게 이해할 수 있습니다. 예 Home News Contact About Home News Contact About Note: We use href="#" for test links. In a real web site this would be URLs. HomeNewsContactAboutNote: We use href="#" for tes..

IT/css 2017.06.08
반응형