Add style to an anchor in a LI tag
<html> <head> <title>Add style to an anchor in a <LI></title> <style type="text/css"> li a { text-decoration: none; } </style> </head> <body> <ul id="navigation"> <li class="warning"><a href="http://www.java2s.com">A</a></li> <li><a href="http://www.java2s.com">B</a></li> <li><a href="http://www.java2s.com">C</a></li> </ul> </body> </html>