Interesting CSS shape navigation (chevrons)

后端 未结 2 1904
慢半拍i
慢半拍i 2021-02-11 09:49

I\'m building a fairly interestingly shaped navigation for a site at the moment. The shape each menu item needs to be is illustrated below:

2条回答
  •  太阳男子
    2021-02-11 10:16

    Add a negative margin to each arrow:

    .navArrow {
      float: left;
      margin-left: -8px;
    }
    

    Demo: http://jsfiddle.net/S7hzu/2/

提交回复
热议问题