More than 5 items per line in jQuery Mobile navbar

前端 未结 8 1274
青春惊慌失措
青春惊慌失措 2021-02-01 17:45

I have unsuccessfully looked for a variable to change the maximum number of items in a single line in a navbar.

I am just starting with jQuery Mobile, trying to create

8条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-01 18:11

    Using jQuery mobile 1.4.0, all I had to do is to create my own CSS class:

    .mytab {
        width: 12.5% !important;  /* 12.5% for 8 tabs wide */
        clear: none !important;  /* Prevent line break caused by ui-block-a */
    }
    

    ..and include it in my list:

    
    

    (original answer had jQuery mobile version wrong)

提交回复
热议问题