“JavaScript Style un elemento” Código de respuesta

Cómo cambiar el estilo de un elemento usando JavaScript

<html>
<body>

<p id="p2">Hello World!</p>

<script>
document.getElementById("p2").style.color = "blue";
</script>

<p>The paragraph above was changed by a script.</p>

</body>
</html>
Arrogant Angelfish

JavaScript Style un elemento

// Getting the element first
var myElement = document.querySelector("#myElement");

// examples for updating styles
myElement.style.color = "blue";
myElement.style.backgroundColor = "red";
Scriper

Estilo a través de JavaScript

element.style.backgroundColor = "red";   // set the background color of an element to red
Nervous Narwhal

Respuestas similares a “JavaScript Style un elemento”

Preguntas similares a “JavaScript Style un elemento”

Más respuestas relacionadas con “JavaScript Style un elemento” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código