{F}rontendové nowwwinky

Pipedrive

next: 13 September, TBA

note:

Today

{ 𝐅 }
Newwws

Browsers

Microsoft Edge 114

released 8 June 2023

note:

Firefox 114

released 6 June 2023

note:

Chrome 114

released 24 May 2023

note:

Safari 16.5

released 27 May 2023

note:

Cought in the net

Baseline helps you to see, at a glance, whether a feature or API is safe to use in your site or web applicationsp.

note:

Jehl’s Law of Web Performance:

A website should load before you can say “cumulative layout shift”

(@stoyanstefanov calculated it to be 1.722 seconds.)

note:

Using :is() in complex selectors selects more than you might initially think

.a .b .c {
  background: green;
}

.a :is(.b .c) {
  background: green;
}

note:

.a :is(.b .c) comes down to following:

  1. .a .b .c
  2. .b .a .c
  3. .a.b .c

note:

.b .c {
  .a & {
    background: green;
  }
}

CSS native nesting above becomes this:

.a :is(.b .c) {
  background: green;
}

note:

Thanks, presentation later this night on @frontendisti