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 trialUSHASHA RODRICK MANJE
5,445 Pointsmy cursor not turning to pointer, whats wrong with my code?
input[type="button"] input[type="reset"] input[type="submit"] { cursor: pointer; }
1 Answer
USHASHA RODRICK MANJE
5,445 Points@deepa thank you a million times, my oversight indeed!
Deepa Gowda
4,941 PointsYou're welcome.:)
Deepa Gowda
4,941 PointsDeepa Gowda
4,941 PointsHi Ushasha,
You are trying to target different types of input selectors. So, it should be input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; }
You need to include a "comma" in between. Hope this helps.