Created
March 9, 2022 03:42
-
-
Save samhk222/be72312125a92c86ebdafed2f5ca1447 to your computer and use it in GitHub Desktop.
This file contains 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
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