I have this code : http://jsfiddle.net/snowman/xJyS3/
There is a extra margin bellow the image in the frame, why? how do I remove it?
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.
Images are inline elements by default. Change them to block elements, and you are ready.
Inline images behave
s very big letters, as you can see, they want to stay on the same line as other letters, so you should modify this behavior by
vertical-align: top/bottom/negative lengthhttp://jsfiddle.net/xJyS3/2/float:left/righton the image,overflow:hiddenon its parenthttp://jsfiddle.net/xJyS3/3/
display: blockon the image: http://jsfiddle.net/xJyS3/1/