Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

137
Vistas
lit styles when render root is lightdom

So I have the following styles:

  static styles = [css, icons];

Then I set the renderRoot to lightdom:

protected createRenderRoot(): Element | ShadowRoot {
    return this;
}

With this the style is not applied and I have to manually add:

render() {
  return html`
 <style>
       ${css.cssText}
       ${icons.cssText}
 </style>

If I remove the createRenderRoot, the styles work without setting the <style> tag in the render function.

Can anyone tell me what I've done wrong? Or why this is happening?

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

The default behavior of lit's createRenderRoot is to create a shadow root and add the styles set in the static styles property to said shadow root.

So, when you override createRenderRoot to use this as the root (ergo, not use shadow DOM at all) you are also removing the code that would add the styles too.

The main reason for this is that styles can only be scoped if they're inside shadow DOM. Adding them to a custom element not using shadow DOM would also make those styles apply to any other node that matched the CSS selectors used.

This basically leaves you with two options:

  1. Keep using only light DOM and move your styles to global stylesheets in a CSS file.
  2. Use shadow DOM

More info: https://lit.dev/docs/components/shadow-dom/#implementing-createrenderroot

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda