Last active
August 21, 2018 07:50
-
-
Save shhider/7e92d4acb9e250169bf96a910ac67cb2 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 elemStyle = document.createElement('style') | |
elemStyle.innerHTML = ` | |
h1:hover, | |
h2:hover, | |
h3:hover, | |
h4:hover, | |
h5:hover, | |
h6:hover, | |
p:hover, | |
li:hover { | |
background: #f3e395; | |
} | |
` | |
document.head.appendChild(elemStyle) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment