Is it possible to change the background color on button click; of the entire document, using only CSS and HTML5?
button
document
(e.g.: it\'s trivial in Ja
There is a way to do it:
.cc2:focus { background-color: #19A3FF;}
The :focus basically means when you click on the element with the class cc2 it will turn it's background blue :) Hope that helps.