Online: 15987
All (*)selector is used to select all element of the of the page.
<style> * { border: 1px solid #c0c0c0; } </style> <body> <p>This is DotNetFunda</p> <br /> <b>This is ITFunda</b> <br /> <div>This is TechFunda</div> <br /> </body>
In the above code snippet we given style to all the elements in the page by using all (*)selector.
OUTPUT