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

201
Views
Cambiar la propiedad de fondo del html, no el cuerpo

¿Cómo cambio la propiedad de fondo del html? Pude cambiar el fondo del elemento del cuerpo, pero quiero manipular la "etiqueta" html (?).

Código para manipular el fondo del cuerpo.

 document.body.style = 'background: radial-gradient(circle, rgba(131,170,203,1) 4%, rgba(69,113,148,1) 50%, rgba(39,71,97,1) 100%);';

Estos intentos no funcionaron

 document.html.style = 'background: red'; document.style = 'background: red';

quiero cambiar esta parte

 html { font-family: Arial, Helvetica, sans-serif; color: white; -webkit-user-drag: none; user-select: none; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; background: radial-gradient(circle, rgba(131,170,203,1) 4%, rgba(69,113,148,1) 50%, rgba(39,71,97,1) 100%); }
about 4 years ago · Juan Pablo Isaza
3 answers
Answer question

0

Debe usar document.documentElement.style para apuntar al elemento html .

 document.body.style = 'background: radial-gradient(circle, rgba(131,170,203,1) 4%, rgba(69,113,148,1) 50%, rgba(39,71,97,1) 100%);'; document.documentElement.style = 'background: red';
 <html> <body> <p>test</p> </body> </html>

about 4 years ago · Juan Pablo Isaza Report

0

cambie el fondo por javascript en la etiqueta html intente esto:

 document.getElementsByTagName('html')[0].style.background="radial-gradient(circle, rgba(131,170,203,1) 4%, rgba(69,113,148,1) 50%, rgba(39,71,97,1) 100%)";

about 4 years ago · Juan Pablo Isaza Report

0

simplemente coloque un background-div en el DOM y manipúlelo. Por ejemplo, posición: absoluta / índice z: -1

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!