Pure CSS tree view with custom tree icons

Поділитися
Вставка
  • Опубліковано 27 лис 2022
  • In this tutorial we'll be creating a pure CSS solution to implement a tree view structure. This is a very common structure and typically requires javascript in order to fully complete. In this CSS only solution we'll have customizable tree icons, use pseudo elements for the 'tier' legs and arms along with several tricks along the way!
    💖 SUBSCRIBE (Please) 💖
    ua-cam.com/users/FollowAndrew?s...
    🔗 Links 🔗
    Pseudo Elements Tutorial: • Before & After CSS Pse...
    CSS Positioning: • CSS Positioning Tutori...
    ⌚Timestamps⌚
    00:00 Intro
    00:01 Setting up the HTML
    05:05 The magic of details & summary
    12:30 Adding the styles for the arms and legs with pseudo elements
    23:30 Setting up custom icons for the collapsed and open states
    31:26 Reminding you to SUBSCRIBE ALREADY
    📢 Social Media 📢
    TWITTER (@followandrewedu) ➞ / followandrewedu
    #css #html #treeview

КОМЕНТАРІ • 41

  • @ayushkushwaha171
    @ayushkushwaha171 7 місяців тому +1

    I had this same scenario come into my work today, your tutorial really helped, thanks Andrew!

  • @hulooloo
    @hulooloo 5 місяців тому

    The perfet tutorial I'v search for tree UI! Thanks Andrew.

  • @tri5431
    @tri5431 Рік тому +3

    Thanks so much ! I needed an additional line in the css, summary {list-style: none;}, to make the disclosure triangle go away, but otherwise, worked like a charm. Very much appreciated.

  • @JustMe-zu2ml
    @JustMe-zu2ml Рік тому

    Very cool. Thanks Andrew!

  • @shubhamambhore7207
    @shubhamambhore7207 Рік тому

    Thanks for all the helpful information 😍

  • @user-zl6zm9xe5b
    @user-zl6zm9xe5b Рік тому

    Great video and explanation. Thanks

  • @NedumEze
    @NedumEze Рік тому

    Amazing creativity. Thanks Andy

  • @Levendo
    @Levendo 2 місяці тому

    This video helped me a great deal. Thanks a lot, good sir.

  • @tanaysurya
    @tanaysurya Рік тому

    This was helpful!

  • @wtdosama
    @wtdosama Рік тому

    You are the best for me thanks

  • @IAmOxidised7525
    @IAmOxidised7525 2 місяці тому

    Man you are a life saver

  • @vishaljaiswal5346
    @vishaljaiswal5346 4 місяці тому

    Really helpful

  • @user-xn3kw9qi5j
    @user-xn3kw9qi5j 4 місяці тому

    thank you

  • @aerkain
    @aerkain 5 місяців тому

    good work

  • @user-hc3cn8jw1o
    @user-hc3cn8jw1o 4 місяці тому

    How well does this approach support screen-readers and accessibility?

  • @GerritforBazeja
    @GerritforBazeja Рік тому

    Thank you for the nice video, again and your calm way of explaining. Can you make it also suitable for mobile.

  • @DeepakNegiSunny
    @DeepakNegiSunny 11 місяців тому

    Hello sir, is there any way we can make that recursive by note repeating the template (li), which repeats itself until last child 😊

  • @antonbrianfejervilchez3507
    @antonbrianfejervilchez3507 Рік тому

    great video!

  • @NedumEze
    @NedumEze Рік тому +4

    Sorry Andy, did you forget to make the code available for download? I'll be helpful if you do

  • @edsonperycles5581
    @edsonperycles5581 Рік тому

    How would we do this in React ?

  • @abidrahim7607
    @abidrahim7607 Рік тому

    This. is. amazing. I would have gone the hard way with JavaScript, but this is so so much better. Thank you sir!

  • @balex259
    @balex259 Рік тому

    Can you share the code from intro?

  • @blackguy-ij7ij
    @blackguy-ij7ij 8 місяців тому

    Is this ada friendly?

  • @anonimus11236
    @anonimus11236 Рік тому

    Source code? I cant get rid of the summery::marker

  • @kajalmondal9745
    @kajalmondal9745 Рік тому

    Please upload regularly sir. Miss your videos

  • @wtdosama
    @wtdosama Рік тому

    We need more full website with css grid (grid-template-areas)

  • @MateStier-hd4nv
    @MateStier-hd4nv Рік тому

    Can i get the code?:)

  • @jeweltalukder3296
    @jeweltalukder3296 Рік тому +1

    source code?

  • @rayyanabdulwajid7681
    @rayyanabdulwajid7681 2 місяці тому

    I have done this without css checkbox or javascript using only html details and summary

  • @wikituby
    @wikituby 7 місяців тому +1

    source code please

  • @brotinbiswas8348
    @brotinbiswas8348 Рік тому +2

    This is amazing and so simple. I like it....👍👍👍👍
    But one thing :- Turn off the default triangle " details summary::-webkit-details-marker { display:none; }" didn't work for me.
    I believe the following approaches will work.
    ul summary::marker {
    content: none;
    }

    • @josevelez6865
      @josevelez6865 11 місяців тому +2

      I found this also worked:
      .tree summary{
      list-style: none;
      }

    • @Gyannea
      @Gyannea 11 місяців тому

      I had the same issue. But the content:none; worked. Disturbing for standardization. I am using the latest Chrome browser, too.

    • @Kennerdoll
      @Kennerdoll 3 місяці тому

      same here

    • @ai_serf
      @ai_serf Місяць тому

      MDN is pretty bad too. the documentation on summary doesn't cover this....