html
<ul class="tab">
<li class="on">
<a href="#">TAB 1</a>
<div>
Contents 1
</div>
</li>
<li>
<a href="#">TAB 2</a>
<div>
Contents 2
</div>
</li>
<li>
<a href="#">TAB 3</a>
<div>
Contents 3
</div>
</li>
</ul>
css
.tab {position:relative; padding-top:31px;}
.tab>li>a {
display:block;
position:absolute;
top:0;
width:95px;
height:30px;
line-height:30px;
text-align:center;
background:#eee;
color:#555;
border:1px solid #767676;
border-bottom:0;
}
.tab>li.on>a {background:#767676; color:#fff;}
.tab>li:first-child>a {left:0;}
.tab>li+li>a {left:100px;}
.tab>li+li+li>a {left:200px;}
.tab>li>div {height:0; overflow:hidden; position:absolute;}
.tab>li.on>div {height:auto; position:static; border:1px solid #767676; padding:10px;}
Jquery
$( ".tab>li>a" ).click(function() {
$(this).parent().addClass("on").siblings().removeClass("on");
return false;
});
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 30 |
아우겐나이스
|
21년 전 | 4046 | |
| 29 |
아우겐나이스
|
21년 전 | 4434 | |
| 28 |
아우겐나이스
|
21년 전 | 3459 | |
| 27 | 21년 전 | 5826 | ||
| 26 | 21년 전 | 3097 | ||
| 25 | 21년 전 | 6075 | ||
| 24 | 18년 전 | 3643 | ||
| 23 | 21년 전 | 3632 | ||
| 22 | 21년 전 | 4243 | ||
| 21 | 21년 전 | 3816 | ||
| 20 | 21년 전 | 4216 | ||
| 19 | 21년 전 | 6677 | ||
| 18 | 21년 전 | 4732 | ||
| 17 | 21년 전 | 6984 | ||
| 16 | 21년 전 | 4168 | ||
| 15 | 21년 전 | 2628 | ||
| 14 | 21년 전 | 4970 | ||
| 13 | 21년 전 | 3398 | ||
| 12 |
Recluse
|
21년 전 | 3873 | |
| 11 |
아우겐나이스
|
21년 전 | 3567 | |
| 10 |
Recluse
|
21년 전 | 3391 | |
| 9 | 21년 전 | 3979 | ||
| 8 | 21년 전 | 5162 | ||
| 7 | 21년 전 | 4758 | ||
| 6 | 21년 전 | 5674 | ||
| 5 | 21년 전 | 4110 | ||
| 4 | 21년 전 | 4834 | ||
| 3 | 21년 전 | 4736 | ||
| 2 | 21년 전 | 3235 | ||
| 1 | 22년 전 | 4336 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기