My current issue involves styling a dropdown menu item:
/* Styling for the last dropdown menu item */
.js .main-nav .menu li:last-child a {
border-bottom: 2px solid;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
overflow:hidden;
}
The problem I am facing is that the portion outside the rounded corner appears in white (the same color as the background of the unordered list) instead of the desired grey color.
Although invisible to users, ensuring consistency with the background color is important for design principles.