Я бы использовал свойство CSS transform: rotate()
.Я создал собственный класс CSS с именем rotate
, который я прикрепил к вашему корню <div>
с идентификатором оболочки, т.е. <div id:"wrapper">
.
.rotate {
transform: rotate(90deg);
}
, чтобы выполнить поворот на 90 градусов, который выровнял ваш график по вертикали, а не по горизонтали.
Я также добавил свойство margin-top
в пользовательский класс rotate
, чтобы переместить ваш графиквниз в поле зрения.Хотя вам, возможно, придется возиться с этим, поскольку у вас есть жестко закодированные размеры элементов.Ниже приведена моя песочница с рабочим примером:
*, *:before, *:after{-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
body{margin: 0px;}
#wrapper{position: relative;}
.branch{position: relative; margin-left: 250px;}
.branch:before {
content: "";
width: 50px;
border-top: 2px solid yellow;
position: absolute;
left: -100px;
top: 50%;
margin-top: 1px;
}
.entry {
position: relative;
min-height: 60px;
}
.entry:before {
content: "";
height: 100%;
border-left: 2px solid red;
position: absolute;
left: -50px;
}
.entry:after {
content: "";
width: 50px;
border-top: 2px solid blue;
position: absolute;
left: -50px;
top: 50%;
margin-top: 1px;
}
.entry:first-child:before {
width: 10px;
height: 50%;
top: 50%;
margin-top: 2px;
border-radius: 10px 0 0 0;
}
.entry:first-child:after {
height: 10px;
border-radius: 10px 0 0 0;
}
.entry:last-child:before {
width: 10px;
height: 50%;
border-radius: 0 0 0 10px;
}
.entry:last-child:after {
height: 10px;
border-top: none;
border-bottom: 2px solid green;
border-radius: 0 0 0 10px;
margin-top: -9px;
}
.entry.sole:before {
display: none;
}
.entry.sole:after {
width: 50px;
height: 0;
margin-top: 1px;
border-radius: 0;
}
.label {
display: block;
min-width: 150px;
padding: 5px 10px;
line-height: 20px;
text-align: center;
border: 2px solid purple;
border-radius: 5px;
position: absolute;
left: 0;
top: 50%;
margin-top: -15px;
}
.rotate {
margin-top: 160px;
transform: rotate(90deg);
}
<div id='wrapper' class="rotate"><span class='label'>1</span><div class='branch lv1'><div class='entry'><span class='label'>1.1</span><div class='branch lv2'><div class='entry'><span class='label'>1.1.1</span><div class='branch lv3'><div class='entry'><span class='label'>1.1.1.1</span></div><div class='entry'><span class='label'>1.1.1.2</span></div></div></div><div class='entry'><span class='label'>1.1.2</span><div class='branch lv3'><div class='entry sole'><span class='label'>1.1.2.1</span></div></div></div></div></div><div class='entry'><span class='label'>1.2</span><div class='branch lv2'><div class='entry sole'><span class='label'>1.2.1</span></div></div></div></div></div></div></div>
Надеюсь, это поможет!