Liftweb Menu customization

前端 未结 4 695
悲哀的现实
悲哀的现实 2021-02-04 18:26

I want to create a menu that looks like:

HOME | FOO | BAR | ABOUT | CONTACT

How might I go about doing this?

Here is what I have tried:

&         


        
4条回答
  •  盖世英雄少女心
    2021-02-04 19:06

    You might want to try to make the

  • elements have an inline-block display.

    ul.menu li {
       display: inline-block;
       *display: inline; zoom: 1; /* inline-block under IE */
       vertical-align: middle;
    }
    

    This way, they will behave much more like block elements and might sync with the links. Also, you can try playing with the line-height property instead of adding vertical padding, since the line-height will center the text vertically in a more precise manner.

提交回复
热议问题