728x90

 

CLASS (CSS 선언자 .) ID (CSS 선언자 #)
여러 요소에 중복적으로 사용
한 페이지에 반복적으로 등장하는 요소에 쓰면 좋음 
한 요소에서만 사용
로고, 상단메뉴 등에 사용됨
#navigation {
    list-style-type: none;
    display: flex;
    justify-content: center;

}
.navbar li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 35px;
    text-decoration: none;
  }

 

728x90

+ Recent posts