I’d like to have a div that looks like this:

Is this possible to do with HTML + CSS? I will also be animating this div with jQuery. When the div is hidden I would like the title and the top line to show.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can do something like this, where you set a negative
marginon theh1(or whatever header you are using)Note: you need to set a
backgroundas well as awidthon theh1Example: http://jsfiddle.net/ZgEMM/
EDIT
To make it work with hiding the
div, you could use some jQuery like this(You will need to modify…)
Example #2: http://jsfiddle.net/ZgEMM/4/