Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

194
Views
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 answers
Answer question

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 Report

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 Report

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!