Universal selectors are wildcard selectors.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'> <head> <title>Class and ID Selectors</title> <style type='text/css'> body { font-family: sans-serif; } * { border: 1px solid yellowgreen; color: green; padding: 5px; font-weight: normal; font-size: 12px; } </style> </head> <body> <h1>Universal Selectors</h1> <p> Universal selectors are wildcard selectors. </p> <form method='post' action='Example_3-2.html'> <fieldset> <legend>Feedback Form</legend> <table> <tbody> <tr> <td><label for='topic'>Topic:</label></td> <td><input type='text' name='topic' id='topic' value='Universal Selectors' size='25' /> </td> </tr> </tbody> </table> </fieldset> </form> </body> </html>