[css] CSS만으로 Tab전환시키는 방법 > 팁앤테크

본문 바로가기
사이트 내 전체검색

팁앤테크

[css] CSS만으로 Tab전환시키는 방법

페이지 정보

profile_image
작성자 제로
댓글 0건 조회 33,247회 작성일 22-02-15 21:08

본문

<style type="text/css">
/* 탭 전체 스타일 */
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 700px;
  margin: 0 auto;}

/* 탭 스타일 */
.tab_item {
  width: calc(100%/3);
  height: 50px;
  border-bottom: 3px solid #333333;
  background-color: #f8f8f8;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #333333;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: tab01 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/* 라디오 버튼 UI삭제*/
input[name="tab_item"] {
  display: none;
}

/* 탭 컨텐츠 스타일 */
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}

/* 선택 된 탭 콘텐츠를 표시 */
#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content {
  display: block;
}

/* 선택된 탭 스타일 */
.tabs input:checked + .tab_item {
  background-color: #333333;
  color: #fff;
}    
</style>

<div class="tabs">
    <input id="tab01" type="radio" name="tab_item" checked>
    <label class="tab_item" for="tab01">Tab 1</label>
    <input id="tab02" type="radio" name="tab_item">
    <label class="tab_item" for="tab02">Tab 2</label>
    <input id="tab03" type="radio" name="tab_item">
    <label class="tab_item" for="tab03">Tab 3</label>
    <div class="tab_content" id="tab01_content">
        tab01_content
    </div>
    <div class="tab_content" id="tab02_content">
        tab02_content
    </div>
    <div class="tab_content" id="tab03_content">
        tab03_content
    </div>
</div>

 

댓글목록

등록된 댓글이 없습니다.

Total 829건 2 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 날짜
804 제로 54822 03-03
803 제로 41260 02-28
802 제로 48391 02-28
801 제로 38216 02-28
800 제로 34476 02-28
799 제로 34452 02-28
798 제로 44309 02-27
797 제로 34570 02-27
796 제로 35373 02-26
795 제로 33145 02-26
794 제로 33445 02-22
열람중 제로 33248 02-15
792 제로 32745 01-01
791 제로 35354 12-29
790 제로 43887 12-20
789 제로 34566 12-15
788 제로 40043 12-10
787 제로 42375 12-10
786 제로 34584 11-29
785 제로 34673 10-31
784 제로 55987 10-20
783 제로 34621 09-14
782 제로 34555 06-20
781 제로 33404 06-20
780 제로 48480 05-18

검색

회원로그인

회원가입

사이트 정보

株式会社YHPLUS / 대표 : ZERO
〒140-0011 東京都品川区東大井2-5-9-203
050-5470-4714
오픈카카오톡 (YHPLUS) :
https://open.kakao.com/o/slfDj15d

접속자집계

오늘
14,188
어제
30,446
최대
431,155
전체
6,894,132
Copyright (c) 株式会社YHPLUS. All rights reserved.