How to make jQuery UI nav menu horizontal?

后端 未结 11 1355
长发绾君心
长发绾君心 2020-12-02 15:29

I love the jQuery UI stuff!

I like the navigation menu, but I can\'t seem to get it horizontal. I\'ve got to be missing something that\'s a cinch.

Anyone kno

11条回答
  •  悲哀的现实
    2020-12-02 16:03

    changing:

    .ui-menu .ui-menu-item { 
        margin: 0; 
        padding: 0; 
        zoom: 1; 
        width: 100%; 
    }
    

    to:

    .ui-menu .ui-menu-item { 
        margin: 0; 
        padding: 0; 
        zoom: 1; 
        width: auto; 
        float:left; 
     }
    

    should start you off.

提交回复
热议问题