I have a page that displays two links side by side. This works on every browser except IE6.
Here’s the link to the fiddle. Does anyone know why this happens, and how to fix it?
Result on IE6:

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.
That’s because IE 7 and lower doesn’t support
display:inline-blockon a defaultblockelement.If you want an element with
display:inline-blockyou can:inlineelement (for example<span>) and setdisplay:inline-blockto itblockelement (for example<div>) and setdisplay:inlineto itYou have
<div>elements, so you need:See it here: http://jsfiddle.net/uQUTc/1/
It works on IE7, but maybe on IE6 this trick doesn’t work (I don’t have it so I can’t test it).
But seriously, why are you programming for IE6? It’s very old and it isn’t a compliant browser.
Edit:
If you want to align the elements, you can use
See it here: http://jsfiddle.net/uQUTc/3/