CSS:-
body {
font-family: Calibri, Segoe, "Segoe UI", "Gill Sans", "Gill Sans MT",
sans-serif;
}
/* It's supposed to look like a tree diagram */
.tree,
.tree ul,
.tree li {
list-style: none;
margin: 0;
padding: 0;
position: relative;
}
.tree {
margin: 0 0 1em;
text-align: center;
}
.tree,
.tree ul {
display: table;
}
.tree ul {
width: 100%;
}
.tree li {
display: table-cell;
padding: 0.5em 0;
vertical-align: top;
}
/* _________ */
.tree li:before {
outline: solid 1px #666;
content: "";
left: 0;
position: absolute;
right: 0;
top: 0;
}
.tree li:first-child:before {
left: 50%;
}
.tree li:last-child:before {
right: 50%;
}
.tree code,
.tree span {
border: solid 0.1em #666;
border-radius: 0.2em;
display: inline-block;
margin: 0 0.2em 0.5em;
padding: 0.2em 0.5em;
position: relative;
}
/* If the tree represents DOM structure */
.tree code {
font-family: monaco, Consolas, "Lucida Console", monospace;
}
/* | */
.tree ul:before,
.tree code:before,
.tree span:before {
outline: solid 1px #666;
content: "";
height: 0.5em;
left: 50%;
position: absolute;
}
.tree ul:before {
top: -0.5em;
}
.tree code:before,
.tree span:before {
top: -0.55em;
}
/* The root node doesn't connect upwards */
.tree > li {
margin-top: 0;
}
.tree > li:before,
.tree > li:after,
.tree > li > code:before,
.tree > li > span:before {
outline: none;
}
请找到此链接示例。
我是 CSS 新手。
下图的 CSS 在下图的示例链接中给出。
我的问题是“body”单元格和“head”单元格应该与“html”单元格等距。
现在“body”单元格更接近“html”单元格。
我应该在 CSS 代码中修改什么?
请看图片