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

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

팁앤테크

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

페이지 정보

profile_image
작성자 제로
댓글 0건 조회 33,137회 작성일 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 779건 2 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 날짜
754 제로 54440 03-03
753 제로 41062 02-28
752 제로 48192 02-28
751 제로 38010 02-28
750 제로 34317 02-28
749 제로 34301 02-28
748 제로 43970 02-27
747 제로 34431 02-27
746 제로 35202 02-26
745 제로 33017 02-26
744 제로 33321 02-22
열람중 제로 33138 02-15
742 제로 32565 01-01
741 제로 35193 12-29
740 제로 43701 12-20
739 제로 34395 12-15
738 제로 39869 12-10
737 제로 42151 12-10
736 제로 34423 11-29
735 제로 34542 10-31
734 제로 55803 10-20
733 제로 34483 09-14
732 제로 34440 06-20
731 제로 33281 06-20
730 제로 48303 05-18

검색

회원로그인

회원가입

사이트 정보

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

접속자집계

오늘
811
어제
25,212
최대
431,155
전체
6,726,063
Copyright (c) 株式会社YHPLUS. All rights reserved.