Created
June 11, 2020 20:12
-
-
Save djD-REK/a58fc0aa1f367bd539ca8f2123ad19aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Select all <div> elements on the page | |
const divs = document.getElementsByTagName("div") | |
// Apply CSS styles to the selected <div> elements | |
for (div of divs) { | |
div.style.border = "3px solid orange" | |
} | |
// As a one-liner: | |
for (div of document.getElementsByTagName("div")) { div.style.border = "3px solid orange" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment