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

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

팁앤테크

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

페이지 정보

profile_image
작성자 제로
댓글 0건 조회 33,617회 작성일 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건 1 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 날짜
829 제로 1093 06-18
828 제로 3828 03-21
827 제로 4161 02-23
826 제로 30605 11-02
825 제로 33830 07-10
824 제로 43527 04-06
823 제로 31538 02-21
822 제로 36961 12-31
821 제로 30687 12-24
820 제로 30483 12-04
819 제로 33168 10-17
818 제로 32038 10-02
817 제로 56778 08-04
816 제로 30418 08-04
815 제로 41027 08-03
814 제로 41487 07-08
813 제로 71097 07-08
812 제로 85977 07-06
811 제로 31709 06-09
810 제로 37395 06-03
809 제로 35761 04-16
808 제로 36313 03-29
807 제로 30729 03-26
806 제로 37935 03-12
805 제로 32874 03-10

검색

회원로그인

회원가입

사이트 정보

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

접속자집계

오늘
47,058
어제
25,218
최대
431,155
전체
7,322,851
Copyright (c) 株式会社YHPLUS. All rights reserved.