电子应用程序

时间:2017-07-02 06:52:34

标签: javascript jquery html css jqtree

我正在尝试在Electron应用程序中使用jqtree。我已经能够做到我需要做的一切。但是,我遇到了将它放在窗口上的问题。

我的index.html文件如下所示:

<body>
    <div id="container">
        <div id="authors">
            <ul id="authlist"></ul>
        </div>
        <div id="stree"></div>
        <div id="clear"></div>
    </div>
    <div id="main-area"></div>
</body>

相关的CSS是:

#container {
    display: inline-block;
    width: 610px;
    margin: auto;
    border: 10px solid orange''
}
#authors {
    float: left;
    width: 200px;
    border-style: solid;
}
#stree {
    width: 400px;
    margin-left: 210px;
    border-style: solid;
}
#clear {
    clear: both;
}

stree是持有jqtree的div

当我填充它时,我得到以下内容:

enter image description here

我想要的是让树的顶部元素与列表的第一个元素对齐。

我尝试在vertical-aligncontainer div上设置stree但尚未运气。

HTML / CSS不是我的主要专业领域,所以我可能在这里做了一些愚蠢的事情。但我很感激能得到的任何帮助。

1 个答案:

答案 0 :(得分:1)

我尝试了以下css:

#container {
    width: 612px;
    margin: auto;
    border: 10px solid orange;
}
#authors {
    float: left;
    width: 200px;
    border-style: solid;
}
#stree {
    float: left;
    width: 400px;
    border-style: solid;
}
#clear {
    clear: both;
}

似乎有效。它将树定位在作者div旁边。