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 trialhassan mohammad
Courses Plus Student 818 PointsDifference between active and focus
Can some one explain to me the difference between active and focus with examples
Thank you in Advance
2 Answers
Kevin D
8,646 PointsFocus
seems to relate more with input
elements. You may want to target a user who is typing into a particular field of your form. The best way would be to wait for the user be 'in focus' of this particular input field (by default, browsers add a border highlight around an input field when you are in focus).
Active
seems to correspond more with a mouse-click interaction with a button or link. If the user clicks on a button, you would target this action with the :active
pseudo-class
Clayton Perszyk
Treehouse Moderator 48,850 Points:focus represents the state when the element is currently selected to receive input and :active represents the state when the element is currently being activated by the user.