css style to all elements code example
Example 1: selet all elemnts
var elems = document.body.getElementsByTagName("*");
Example 2: css aplying everything
* {
/*
Put in styling that you would apply to everything , the '*' means everything
*/
}