Looking for help with CSS to center the edges of a family tree design. Has anyone experience in working on styling family trees?
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.tree {
margin-left: 100px;
padding: 50px;
font: 16px Verdana, sans-serif;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
...
For more details and the original code setup, you can check out the JSFiddle link here: https://jsfiddle.net/fuj5bdyh/2/