Wants a rollover effect in which the tabs appear to come to the front. Create a style rule for the body > header nav.tabs li selector that uses the pseudo-class hover that changes the background color to rgb(231, 231, 231).
body >header nav.tabs li:hover {
background-color: rbg(231,231,231);
}
You have
Open in new window
If you remove the comma your border will show.
-Robert