Tip of the Day
So, I was playing around with my other blog today, trying to remove the focus outline that Firefox applies to focused links. Adding a {outline:none;} worked on everything except my headers. I tried drilling down the cascade, (example: h3 a:focus {outline: none;}), but it didn’t work. Frustrated, I turned to google. Lo and behold, the answer was quick, easy and awesome. Simply use the wildcard selector!
*:focus {
outline:0;
}
