I am trying to create a drop-down-menu and i am having some problems with the width of the links as they get out of the box...

check it out http://jsfiddle.net/V4Cgn/

link|improve this question

63% accept rate
feedback

3 Answers

up vote 0 down vote accepted

you can do it like this: http://jsfiddle.net/V4Cgn/8/ add overflow:hidden; to #popupbox

link|improve this answer
feedback

Use exact width:

#popupbox ul li a{
    padding: 10px;
    width:129px;
    float:left;
    color:#ffffff;
    text-decoration:none;
}
link|improve this answer
feedback

If you can't use an exact width you can do this with percentages still. You're padding was wrong.

#popupbox ul li{
    display:block;
    width:100%;
}
#popupbox ul li a{
    width:90%;
    padding: 10px 0 10px 10%;
    float:left;
    color:#ffffff;
    text-decoration:none;
}

I've set an example up here - http://jsfiddle.net/spacebeers/TnZZj/4/

If you can use an exact with though I'd do that instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.