Skip to content

Instantly share code, notes, and snippets.

@samhk222
Created March 9, 2022 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samhk222/be72312125a92c86ebdafed2f5ca1447 to your computer and use it in GitHub Desktop.
Save samhk222/be72312125a92c86ebdafed2f5ca1447 to your computer and use it in GitHub Desktop.
let selector = "#content > ul > li > a:nth-child(1)";
for (let e of document.querySelectorAll(selector)) {
e.style.border = "thick solid #0000FF";
e.style.backgroundColor = "red";
e.style.color = 'white';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment