HTML CSS examples for CSS Widget:Border
Adding css border style to div when hover
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .ui-contextmenu .ui-menuitem-link:hover { font-weight:bold; border:2px solid Chartreuse; } </style> <!--from w w w . j a v a 2s. c o m--> </head> <body> <div class="ui-contextmenu"> No border here <div class="ui-menuitem-link"> Border here </div> </div> </body> </html>