HTML CSS examples for HTML Tag:a
Avoid the box movement on <a> hover
<html lang="en"> <head> <style> a:hover {<!-- www . j a v a 2 s .c o m--> box-shadow:inset 6px 0 0 Chartreuse; } </style> </head> <body translate="no"> <a href="#">Hover me</a> </body> </html>