“Establecer estilos CSS con JavaScript” Código de respuesta

Cómo dar estilo CSS en JavaScript

document.getElementById("myH1").style.color = "red";
linux.bug

Establecer estilos CSS con JavaScript

var style = document.createElement('style');
  style.innerHTML = `
  #target {
  color: blueviolet;
  }
  `;
  document.head.appendChild(style);
Chaim Angel

Establecer estilos CSS con JavaScript

var style = document.createElement('style');
  document.head.appendChild(style);
  style.sheet.insertRule('#target {color: darkseagreen}');
Chaim Angel

Establecer estilos CSS con JavaScript

// Create our shared stylesheet:
const sheet = new CSSStyleSheet();
sheet.replaceSync('#target {color: darkseagreen}');

// Apply the stylesheet to a document:
document.adoptedStyleSheets = [sheet];
Chaim Angel

Establecer estilos CSS con JavaScript

document.getElementById('target').style.color = 'tomato';
Chaim Angel

Respuestas similares a “Establecer estilos CSS con JavaScript”

Preguntas similares a “Establecer estilos CSS con JavaScript”

Más respuestas relacionadas con “Establecer estilos CSS con JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código