Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on my personal website. I need the input box expand when user clicks on it to input. (ex: twitter input box, it will expand when user click on it to write )

thank you

share|improve this question

migrated from webmasters.stackexchange.com Jul 19 '11 at 11:54

1 Answer

Using CSS this is fairly simple: With the :focus pseudo class (http://www.w3schools.com/css/css_pseudo_classes.asp) you can easily detect input elements that are focussed. If you want fancy animations, use jquery to morph inbetween.

share|improve this answer
Animations are also possible using CSS3; I've found an example, which matches the question - just replace #width:hover with input:focus in the example code. – feeela Jul 19 '11 at 15:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.