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

196
Vistas
Create CSS using js?

So In javascript you can do things like

document.querySelector('html').style.filter = 'invert(100%)'

Which Inverts colors on the entire webpage but is there anyway to use

document.querySelector('html').style.pointer = 'something'

or a way to add a css rule or something to the document?

example you have an element like this

hello

then js gives an class hello

then js adds a css rule?

.why {}

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

0

You can add a css class to specific element with (and then create the styles from the css file):

[NameOfTheElement].classList.add("mystyle")

This will work for the document:

document.querySelector('html').classList.add('new-class');

This will work for the body:

document.querySelector('body').classList.add('new-body-class')
about 4 years ago · Juan Pablo Isaza Denunciar

0

You could write to the document using document.write

document.write(`
<style>
  #text {
    color: red;
  }
</style>`)
<h1 id='text'>Hello</h1>

Or, you can also create an element and append it to the document

let style = document.createElement('style')
style.innerHTML = `
.text {
  color: red;
}
`

document.body.appendChild(style)
<h1 class='text'>Hello</h1>

about 4 years ago · Juan Pablo Isaza Denunciar

0

There are a few ways.

  1. If you already have styles defined for a certain class within your stylesheet, you can do what Erasmo said above:
element.classList.add('className');
  1. You can also use:
element.style.color = 'white';
  1. Or add a style attribute to the element:
element.setAttribute('style', 'color: white; background-color: green;');
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