Please refer to http://jsfiddle.net/4kSpz/
Each li is shown inline, but for some reason the <dl><dt> is not inline.
What extra css do I need to include to move the <dl><dt> item inline with the other list items?
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.
In
.dselector dtand.dselector dt a spanyou are usingdisplay: block.You can change this to
display: inline-blockto keep it inline and display as block. Or if you want to support IE7 you can usefloat: left; just remember to clear your floats.Using
inline-block: http://jsfiddle.net/4kSpz/2/Using
float: left: http://jsfiddle.net/4kSpz/3/