<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>家谱树状代码 demo by js.alixixi.com</title>
<style class="csscreations">
/*Now the CSS*/
* {margin: 0; padding: 0;}

.tree ul {
padding-top: 20px; position: relative;

transition: all 0.5s;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
}

.tree li {
float: left; text-align: center;
list-style-type: none;
position: relative;
padding: 20px 5px 0 5px;

transition: all 0.5s;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
}

/*We will use ::before and ::after to draw the connectors*/

.tree li::before, .tree li::after{
content: '';
position: absolute; top: 0; right: 50%;
border-top: 1px solid #ccc;
width:50%; height: 20px;
}
.tree li::after{
right: auto; left: 50%;
border-left: 1px solid #ccc;
}

/*We need to remove left-right connectors from elements without
any siblings*/
.tree li:only-child::after, .tree li:only-child::before {
display: none;
}

/*Remove space from the top of single children*/
.tree li:only-child{ padding-top: 0;}

/*Remove left connector from first child and
right connector from last child*/
.tree li:first-child::before, .tree li:last-child::after{
border: 0 none;
}
/*Adding back the vertical connector to the last nodes*/
.tree li:last-child::before{
border-right: 1px solid #ccc;
border-radius: 0 5px 0 0;
-webkit-border-radius: 0 5px 0 0;
-moz-border-radius: 0 5px 0 0;
}
.tree li:first-child::after{
border-radius: 5px 0 0 0;
-webkit-border-radius: 5px 0 0 0;
-moz-border-radius: 5px 0 0 0;
}

/*Time to add downward connectors from parents*/
.tree ul ul::before{
content: '';
position: absolute; top: 0; left: 50%;
border-left: 1px solid #ccc;
width: 0; height: 20px;
}

.tree li a{
border: 1px solid #ccc;
padding: 5px 10px;
text-decoration: none;
color: #666;
font-family: arial, verdana, tahoma;
font-size: 11px;
display: inline-block;

border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;

transition: all 0.5s;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree li a:hover, .tree li a:hover+ul li a {
background: #c8e4f8; color: #000; border: 1px solid #94a0b4;
}
/*Connector styles on hover*/
.tree li a:hover+ul li::after,
.tree li a:hover+ul li::before,
.tree li a:hover+ul::before,
.tree li a:hover+ul ul::before{
border-color: #94a0b4;
}

/*Thats all. I hope you enjoyed it.
Thanks :)*/
</style>
</head>
<body>
<!--
We will create a family tree using just CSS(3)
The markup will be simple nested lists
-->
<div class="tree">
<ul>
<li>
<a href="#">父亲</a>

<ul>
<li>
<a href="#">孩子1</a>
<ul>
<li>
<a href="#">孙子</a>
</li>
</ul>
</li>
<li>
<a href="#">孩子2</a>
<ul>
<li><a href="#">孙子1</a></li>
<li>
<a href="#">孙子2</a>
<ul>
<li>
<a href="#">曾孙1</a>
</li>
<li>
<a href="#">曾孙2</a>
</li>
<li>
<a href="#">曾孙3</a>
</li>
<li>
<a href="#">曾孙4</a>
</li>
<li>
<a href="#">曾孙5</a>
</li>
<li>
<a href="#">曾孙6</a>
</li>
</ul>
</li>
<li><a href="#">孙子3</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</body>
</html>

最新文章

  1. Python09作业思路及源码:高级FTP服务器开发(仅供参考)
  2. [普通平衡树treap]【学习笔记】
  3. 分享几个原生javascript面向对象设计小游戏
  4. 自定义PopupWindow弹出框(带有动画)
  5. android 点滴记录 ICCID IMSI IMEI MEID 关系 和 区别,相关参数在什么情况下可以获取...
  6. OpenCV——人脸检测
  7. Java 在本地文件中查找固定字符串
  8. 聊聊属性方法property的用法
  9. C语言第七次博客作业--一二维数组
  10. Python中Json对象处理的jsonpath-rw
  11. rpm -ivh 安装与 rpm -U安装解决问题一例
  12. 刘志梅201771010115.《面向对象程序设计(java)》第十六周学习总结
  13. 性能优化 Profiler MAT 内存泄漏 堆转储 MD
  14. 第三个Sprint ------第八天
  15. ecshop验证码图片无法显示终极解决办法
  16. idea Cannot Resolve Symbol 问题解决
  17. 硬件中断和DPC一直占40-52%左右 解决方法
  18. C陷阱与缺陷的个人知识点摘录
  19. c语言scanf()停止接受输入及scanf(&quot;%c&quot;,&amp;c)吃掉回车或者空格字符的问题
  20. python之函数用法locals()

热门文章

  1. poj-1635 Subway tree systems(推断两个有根树是否同构)-哈希法
  2. Script Library 配置 和 使用
  3. Configuration.SectionGroups
  4. electron利用nodejs+移动端技术跨平台桌面应用开发框架——记录下,类似node webkit!
  5. bzoj1227
  6. jQueryTools-Scrollable.js
  7. ACM_Repeating Characters
  8. android GPS 定位,取位置信息
  9. [转]自适应网页设计(Responsive Web Design)
  10. cplusplus系列&gt;utility&gt;pair