Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialVolodymyr Boretskyi
9,094 PointsWeird hover effect on android.
Hi, I tried this on my real website. And on my android-l links have some strange blue background color on hover? Works well on desktop at any resolution.
Does anyone know what this is?
2 Answers
Ted Sumner
Courses Plus Student 17,967 PointsI don't know for sure, but I would look to see if vendor prefixes are required for hover. I would also think that hover would be hard on a touch device. You may want to do some searching on the issue.
Volodymyr Boretskyi
9,094 PointsI've solved the issue with
- { -webkit-tap-highlight-color:rgba(0,0,0,0); /* prevent tap highlight color / shadow */ }
Ted Sumner
Courses Plus Student 17,967 PointsGood. I am glad you figured it out.