我找到了像this这样的家庭树视图,如果有很多孩子并且不适合屏幕,那么设计会受到严重破坏。如何应用水平滚动条?非常感谢你。这是CSS。
/*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 :)*/
这是网站使用的HTML。我的分支很多次。
<!--
We will create a family tree using just CSS(3)
The markup will be simple nested lists
-->
<div class="tree">
<ul>
<li>
<a href="#">Parent</a>
<ul>
<li>
<a href="#">Child</a>
<ul>
<li>
<a href="#">Grand Child</a>
</li>
</ul>
</li>
<li>
<a href="#">Child</a>
<ul>
<li><a href="#">Grand Child</a></li>
<li>
<a href="#">Grand Child</a>
<ul>
<li>
<a href="#">Great Grand Child</a>
</li>
<li>
<a href="#"> Hello </a>
</li>
<li>
<a href="#">Great Grand Child</a>
</li>
<li>
<a href="#">Great Grand Child</a>
</li>
</ul>
</li>
<li><a href="#">Grand Child</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
我有<div class="tree" style ="overflow-x:scroll">
但滚动条不起作用。每当我恢复窗口时,树都会扭曲,滚动条会固定,不会滚动。请帮我。非常感谢!
答案 0 :(得分:0)
不太明白你的问题,我意识到你需要一个滚动,在窗口的分辨率或它永久性的什么突变?然后滚动到您的版本将始终存在,如果您在更改屏幕分辨率时仍需要滚动,然后使用像这样的蜂蜜请求
@media screen and (max-width: 650px) {
.tree {
display: block;
overflow-x: scroll;
}
答案 1 :(得分:0)
将总width 100%
放在内容主要div的css上
答案 2 :(得分:0)
示例:您具有家谱树所在的框,其名称如下:树框。像width: 1200px;
一样为其添加最大宽度现在您在div
另一个div
内进行如下操作:
HTML:
<div id="treebox">
<div id="treecontent">
[put your html here]
</div>
</div>
CSS:
#treebox{
height:100%;
width:1200px;
}
#treecontent{
width: 100%;
or
width:1600px;
}
这会弹出一个滚动条。
您需要锁定div
中的内容,我在此命名为树箱。并将内容放在另一个更大的div
中。
答案 3 :(得分:0)
让它在这里为你工作:http://jsfiddle.net/A3yh9/5/这可能看起来有些搞砸了,因为我添加了很多不注意放置它们的孩子。这应该修复它或者它自己的东西而不是代码只是复制粘贴在你的CSS:
.tree {
height:100%;
width:960px;
}
.treecontent2{
width:100%;
}
/*in the .tree put any width u want./
并在您已有的div
div下方添加.tree
,不要忘记将其关闭在所有内容下方的远端,但高于</div>
.tree div
的{{1}} }}
答案 4 :(得分:0)
我终于找到了答案..
您需要更新.tree li类,如下所示。
.tree li {
display: inline-block;
white-space: nowrap;
vertical-align: top;
margin: 0 -2px 0 -2px;
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;
}
我已经创建了下面的工作jsfiddle。
答案 5 :(得分:-1)
我从不相信HTML“style =”“”元素中的CSS。你有没有尝试直接把它放在CSS中?请试试这个:
.tree{
overflow-x: scroll;
}