I tried to do a dropdown menu, but I have a lot of questions and it seems I am doing all wrong. Some of the major question that are perturbing my dreams are:

  • Should I use list-style:none; on ULs or LIs (or both)?
  • Is it better to put background-color and border on As or LIs?
  • Should the LIs that are inside the absolute floating UL have float:left; or position:relative;?

The code I am using seems of work, but my biggest fear is that I am writing unnecessary lines or even bad coding.

Please help.

The CSS I am using:

*{
padding:0;
margin:0;
}

#menu{
margin:0 auto;
width:800px;
background:#999;
border:1px solid #777;
}

#menu ul{
list-style:none;
border-right:1px solid #aeaeae;
/*Not sure about this V*/
position:relative;
float:left;
}

#menu li ul{
font-weight:normal;
display:none;
position:absolute;
border:1px solid #777;
width:200px;
/*Not sure about this V*/
float:none;
margin-left:-2px;
}

#menu li{
display:block;
position:relative;
float:left;
background:#999;
border-right:1px solid #777;
border-left:1px solid #aeaeae;
}

#menu li li{
float:none;
background:#eaeaea;
border:0;
border-top:1px solid #666;
}

#menu li:hover{
background:#a6a6a6;
}

#menu li li:hover{
background:#f5f5f5;
}

#menu a{
display:block;
text-decoration:none;
color:#fff;
padding:5px 15px;
}

#menu li ul a{
color:#333;
}

#menu a:hover{
color:#fff;
}

#menu li ul a:hover{
color:red;
}

#menu li li:first-child{
border-top:0;
}

.clear{
clear:both;
font-size:0;
line-height:0;
}

The HTML structure is:

<div id="menu">
    <ul>
        <li><a href="">Home</a></li>
        <li><a href="">About Us</a></li>
        <li><a href="">Products</a>
        <li><a href="">Drop Down</a>
            <ul>
            <li><a href="">DD Item</a></li>
            <li><a href="">Another One</a></li>
            <li><a href="">Last DD Item</a></li>
            </ul><div class="clear"></div>
        </li>
    </ul><div class="clear"></div>
</div>

I am using JQuery to show/hide the menu with:

$('#menu ul li').hover(function(){$('ul',this).slideDown(100);},
function(){$('ul',this).slideUp(100);});

The code I used is strongly modified, but taken from here

link|improve this question
In case it helps, here are some pure-CSS (no JavaScript) drop-down menus: phrogz.net/js/ul2menu/purecss_testsuite.html – Phrogz Dec 28 '11 at 20:15
@Phrogz broken link – user1022373 Dec 28 '11 at 20:17
Sorry, the server was down for maintenance. It is up now. – Phrogz Dec 28 '11 at 23:07
feedback

2 Answers

up vote 1 down vote accepted

Your dreams are probably safe. That is, your CSS looks pretty good overall. You may want to consider using Twitter Bootstrap for some of what you're doing (awesome drop-downs), but you can certainly roll-your-own.

To answer your questions:


Should I use list-style:none; on ULs or LIs (or both)?

Just on ul's.


Is it better to put background-color and border on As or LIs?

Put them on the li elements.


Should the LIs that are inside the absolute floating UL have float:left; or position:relative;?

These accomplish entirely different things. Floating left should be sufficient, but you may want to do both.


You should also refactor your jQuery code, despite the fact that it works:

$("#menu ul li").hover(
  function () {
    $(this).children("ul").slideDown(100);
  },
  function () {
    $(this).children("ul").slideUp(100);
  }
);
link|improve this answer
thanks for the JQuery improvement, and for the other answers. So floate:none; is not recommended at all (on the menu>ul>li>ul>li)? – user1022373 Dec 28 '11 at 20:04
oh, also Should I use left:0; on the absolute positioned UL? – user1022373 Dec 28 '11 at 20:10
feedback

something like this

$("#menu ul li").hover(
      function () {
        $(this).children("ul").slideDown(100);
      },
      function () {
        $(this).children("ul").slideUp(100);
      }
    );

there is an example http://jsfiddle.net/amkrtchyan/S7y8e/3/

list-style:none;
border-right:1px solid #aeaeae;
/*Not sure about this V*/
position:relative;
//float:left;
}

#menu li ul{
font-weight:normal;
display:none;
position:absolute;
border:1px solid #777;
width:200px;
/*Not sure about this V*/
//float:none;
margin-left:-2px;
}
link|improve this answer
My question is about the CSS – user1022373 Dec 28 '11 at 19:51
i know but your JavaScript dosn't work – Aram Mkrtchyan Dec 28 '11 at 19:56
my JS works perfectly, my question have nothing to do with JS, that is why I didn't even tag it – user1022373 Dec 28 '11 at 19:58
feedback

Your Answer

 
or
required, but never shown