{F}rontendové nowwwinky

Online sraz

{ 𝐅 }
Letem swwwětem

  1. března ’22

Prohlížeče

Microsoft Edge 99

vydán 3. března

note:

Firefox 98

vydán 8. března

note:

Chrome 99

1. března

Note:

const styles = `background: linear-gradient(90deg, #0057b7 0%, #0057b7 50%, #ffd700 50%, #ffd700 100%); color: #111; font-size: 2.5rem; font-weight: 600; padding: 1rem 2rem;`
console.log('%cСлава Україні!', styles)

Chrome 100

22. března

Note:

Internet Explorer

vydán 17. října 2013

No comment…

Zachyceno v síti

note:

CSS Cascade Layers

@layer { … }

note:

původ stylů:

note:

priorita následovně:

iframe:fullscreen {
  /* iframes in full-screen mode don't show a border. */
  border: none !important;
  padding: unset !important;
}

note:

@layer layer-1 { a { color: red; } }
@layer layer-2 { a { color: orange; } }
@layer layer-3 {
  @layer sub-layer-1 { a { color: yellow; } }
  @layer sub-layer-2 { a { color: green; } }
  /* un-nested */ a { color: blue; }
}
/* un-layered */ a { color: indigo; }

K čemu to je?

  1. lepší práce s resetovacími stylopisy a výchozími styly
  2. celková architektura (viz ITCSS)
  3. zapouzdření stylů 3. stran

note: