Creating a hover menu
Creating a hover menu
How to create an hover menu



Last updated
Was this helpful?
Creating a hover menu



Last updated
Was this helpful?
Was this helpful?
/* show all descendants and add pointer cursor on hover */
{SELECTOR}:hover * {
display: block;
cursor: pointer;
}
/* add background padding to create a highlight */
{SELECTOR} a {
padding: 9px 16px;
}
/* change background color on hover */
{SELECTOR} a:hover {
background-color: #ddd;
}