Skip to content

Instantly share code, notes, and snippets.

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 giannischiout/e1b10ed48806ee5c70a79c4416fecbe1 to your computer and use it in GitHub Desktop.
Save giannischiout/e1b10ed48806ee5c70a79c4416fecbe1 to your computer and use it in GitHub Desktop.
#javascript #manipulatingStyle
.big {
font-size: 100px;
color: orange;
border: 5px solid red;
}
var p = document.querySelector("p")
p.classList.add("big");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment