HTML/웹접근성

스킵 네비게이션 / 본문 바로가기

은선은 2022. 7. 13. 16:45

html

<div class="skip-nav">
      <a href="#gnb">메뉴 바로가기</a>
      <a href="#main">본문 바로가기</a>
</div>

 

scss

.skip-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  
  > a{
    display: block;
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    padding: 0 25px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    line-height: 50px;

    &:focus, &:active{
      overflow: hidden;
      top: 0;
      z-index: 101;
      text-decoration: none;
    }
  }
}

'HTML > 웹접근성' 카테고리의 다른 글

프론트엔드 웹 접근성  (0) 2024.05.26