Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save djD-REK/a58fc0aa1f367bd539ca8f2123ad19aa to your computer and use it in GitHub Desktop.
Save djD-REK/a58fc0aa1f367bd539ca8f2123ad19aa to your computer and use it in GitHub Desktop.
// 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