代码片段——Tab

写html时,经常用到tab,现整理一下。

html结构:

 1 <div class="tab tab_survey">
2 <div class="tab_hd clearfix"><a class="curr" href="#">单题目调查</a><a href="#">多题目调查</a></div>
3 <div class="tab_bd">
4 <div class="tab_cont curr">
5 <ul class="list_survey_content">
6 <li>测试</li>
7 <li>测试</li>
8 <li>测试</li>
9 </ul>
10 </div>
11 <div class="tab_cont"></div>
12 </div>
13 </div>

CSS:

1 .tab_hd{ border-left:1px solid #ccc;  margin-bottom:-1px; line-height:25px; }
2 .tab_hd a{ float:left; width:100px; height:24px; color:#1E50A2; border-top:1px solid #ccc; border-right:1px solid #ccc; text-align:center;}
3 .tab_hd .curr{ font-weight:bold;height:25px; background-color:#fff; position:relative;}
4 .tab_bd{ border:1px solid #ccc; padding:10px; border-bottom-left-radius:5px; border-bottom-right-radius:5px;}
5 .tab_cont{ display:none;}
6 .tab .tab_bd .curr{ display:block;}




相关文章:

  • 2021-11-25
  • 2021-09-20
  • 2022-02-12
  • 2021-12-05
  • 2021-06-22
  • 2022-01-20
  • 2021-10-29
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-05
  • 2022-01-11
  • 2021-08-17
相关资源
相似解决方案