list-style-type: none property is used to remove bullets from Lists. Example :
<html> <head> <style> ul { list-style-type: none; } </style> </head> <body> <ul> <li>First</li> <li>Second</li> <li>Third</li> </ul> </body> </html>
list-style-type: none property is used to remove bullets from Lists. Example :
<html> <head> <style> ul { list-style-type: none; } </style> </head> <body> <ul> <li>First</li> <li>Second</li> <li>Third</li> </ul> </body> </html>