1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
| #arbre {
width:500px;
margin:0 auto;
padding:0;
overflow:hidden;
border:1px dotted #999; /*pour test*/
}
#arbre li {
list-style-type:none;
position:relative;
clear:both;
width:50%;
padding:5px 5px;
box-sizing: border-box;/*important*/
}
#arbre li:nth-child(odd) {
float:right;
padding-left:25px;
text-align:left;
border-left:2px solid red;
margin-right:1px;/*important : aligne les barres verticales*/
}
#arbre li:nth-child(even) {
float:left;
padding-right:25px;
text-align:right;
border-right:2px solid red;
margin-left:1px;/*important : aligne les barres verticales*/
}
#arbre li:after
{
position:absolute;
width:20px;
height:0px;
content:'';
top:50%;
border-top:2px solid red;
}
#arbre li:nth-child(odd):after
{
left:0;
}
#arbre li:nth-child(even):after
{
right:0;
}
/* decoration */
#arbre li:first-letter {
color:red;
font-size:200%;
} |
Partager