15

私はこのチュートリアルに従おうとしていますが、これまでのコードは次のとおりです。

チュートリアルの最後には、ブランチの最後のノードの後に​​垂直バーがないことが示されています。しかし、私はそれをそのように機能させることができませんでした!. 私が何か間違ったことをしている場合、またはチュートリアルに何かが欠けている場合のアイデア!

チュートリアルにあるように :last-child 疑似クラスも試してみましたが、同じ結果になりました。

間違った CSS ツリー

4

4 に答える 4

20

疑似要素とボーダーのみを使用して試してみます。

ul, li{     
    position: relative;    
}

/* chop off overflowing lines */
ul{
    overflow: hidden;
}

li::before, li::after{
    content: '';
    position: absolute;
    left: 0;
}

/* horizontal line on inner list items */
li::before{
    border-top: 1px solid #333;
    top: 10px;
    width: 10px;
    height: 0;
}

/* vertical line on list items */    
li::after{
    border-left: 1px solid #333;
    height: 100%;
    width: 0px;
    top: -10px;
}

/* lower line on list items from the first level 
   because they don't have parents */
.tree > li::after{
    top: 10px;
}

/* hide line from the last of the first level list items */
.tree > li:last-child::after{
    display:none;
}

デモ(編集済み)

于 2013-02-17T15:11:42.023 に答える
3

私はそれを修正したと信じています: https://github.com/gurjeet/CSSTree/pull/1

CSS を変更して背景を削除し、マージンをパディングに変更しました。

ul.tree, ul.tree ul {
    list-style-type: none;
    margin:0;
    padding:0;
}

ul.tree ul {
    padding-left: 1em;
    background:  url(vline.png) repeat-y;
}

ul.tree li {
    margin:0;
    padding: 0 1.2em;
    line-height: 20px;
    background: url(node.png) no-repeat;
    color: #369;
    font-weight: bold;
}

/* The #fff color background is to hide the previous background image*/
ul.tree li.last {
    background: #fff url(lastnode.png) no-repeat;
}

ul.tree ul:last-child {
    background: none;
}
于 2013-02-17T15:06:11.663 に答える
3

残念なことに、疑似クラスは次期 CSS3 仕様で定義されており、現時点ではそれをサポートしている Web ブラウザーはほとんどありません。

チュートリアルの最後に書いてあります。たぶんそれが機能していない理由です。

于 2013-02-17T14:57:08.713 に答える
2

ありがとうございました。役立つ回答により、さらに読むことができました。最後に、 この記事を読み、JavaScript への依存関係をすべて削除し、nth-last-of-type疑似セレクターを使用して、リストの最後の li 項目に特別な背景を適用しました (ul を無視して最後のliの後に来ます)。

最終的なコードはこちらです。誰かが問題を指摘しない限り、私は自分の答えを受け入れるつもりです。(この段階では、古いブラウザーとの互換性は重要ではないと思います。)

答えてくれた@Aramに感謝します。@OneTrickPony、あなたの答えはこの初心者の頭を超えました:)私はそれが正しいことをすると確信していますが、私には少し複雑すぎます。

<style type="text/css">
/* ul[class=tree] and every ul under it loses all alignment, and bullet
 * style.
 */
ul.tree, ul.tree ul {
    list-style-type: none;
    margin:0;
    padding:0;
}

/* Every ul under ul[class=tree] gets an indent of 1em, and a background
 * image (vertical line) applied to all nodes under it (repeat-y)
 */
ul.tree ul {
    padding-left: 1em;
    background:  url(vline.png) repeat-y;
}

/* ... except the last ul child in every ul; so no vertical lines for
 * the children of the last ul
  */
ul.tree ul:last-child {
    background: none;
}

/* Every li under ul[class=tree]
 *  - gets styling to make it bold and blue, and indented.
 *  - gets a background image (tilted T), to denote that its a node
 *  - sets height to match the height of background image
 */
ul.tree li {
    margin:0;
    padding: 0 1.2em;
    background: url(node.png) no-repeat;
    line-height: 20px;
    color: #369;
    font-weight: bold;
}

/*  The last li gets a different background image to denote it as the
 *  end of branch
 */
ul.tree li:nth-last-of-type(1) {
    background: url(lastnode.png) no-repeat;
}

于 2013-02-17T20:10:49.893 に答える