Liftweb Menu customization

前端 未结 4 746
悲哀的现实
悲哀的现实 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:01

    To get rid of the last line, you could use the :last-child pseudo-class:

    ul.menu li:last-child {
      border: none;
    }
    

提交回复
热议问题