Michelle Barker - Modern CSS Layout is Awesome! - btconf Düsseldorf 2023

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 พ.ย. 2024

ความคิดเห็น • 9

  • @andreaskaemmerle
    @andreaskaemmerle ปีที่แล้ว +4

    Great talk. Thanks for putting these online, looking forward to my next #btconf 🚀

  • @AlfonsoML
    @AlfonsoML ปีที่แล้ว +5

    Mind blown starting at 35:45

    • @t-m-r
      @t-m-r ปีที่แล้ว +1

      Actually, what she did there was unnecessary. Instead of:
      .card-grid:has(> :last-child:nth-child(odd)) > :first-child {
      grid-column: span 2;
      }
      Could have written like this without using the :has() selector:
      .card-grid > li:first-child:nth-last-child(odd) {
      grid-column: span 2;
      }
      This would be simpler and more performant.

  • @philip9677
    @philip9677 ปีที่แล้ว +1

    Guys we use page builder like elementor at work so rarely get practice these cool layout methods, hoping to do so in my own projects

  • @Linuxdirk
    @Linuxdirk ปีที่แล้ว +6

    How come the audio is so absurdly good on this video?

    • @btconf
      @btconf  ปีที่แล้ว +1

      It was good while recording and I added a bit of post production to it. But really not too much, to be honest.

    • @EmmGee23
      @EmmGee23 5 หลายเดือนก่อน

      @@btconf Don’t yout think it’s a little off to the left side?

    • @btconf
      @btconf  5 หลายเดือนก่อน

      @@EmmGee23 are you on a mission here? 😁 (You added comments on audio on three videos aleeady)

  • @philip9677
    @philip9677 ปีที่แล้ว +1

    gap shoud be enabled for all elements not just flex or grid, it would be super useful