Display parameters passed to JSP

Some times the list of parameters passed to a JSP page can be quite long. Of course, you can display the parameters in the address bar by changing your method to POST, but when you have a lot or parameters, this can be cumbersome. The following code will allow you to display all parameters provided; each on their own line. …

CSS Selectors

Selector Example Example description CSS .class .intro Selects all elements with class="intro" 1 #id #firstname Selects the element with id="firstname" 1 * * Selects all elements 2 element p Selects all <p> elements 1 element,element div, p Selects all <div> elements and all <p> elements 1 element element div p Selects all <p> elements inside <div> elements 1 element>element div ...