HTML CSS examples for CSS Widget:UL Element
Using an html triangle for a list
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> a:hover:before {<!-- w w w . j a v a 2s. c o m--> content:'\26BA'; } </style> </head> <body> <ul> <li> <a href="">Lore</a> </li> <li> <a href="">Lore</a> </li> </ul> </body> </html>