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
You could do something like this -- using the adjacent css selector :
button btn:active + .content{ background: blue; }
http://jsfiddle.net/JeffreyTaylor/g47Uh/