Add triangle before submenu using css

前端 未结 3 1500
忘掉有多难
忘掉有多难 2020-12-30 18:02

How can i add triangle to the following example Fiddle

I need to remove the parent menu with white background and show triangle to to make it look more like this<

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-30 18:27

    Hope this helps, I have commented out some of your css and jquery scripts. Also, added a style at the end please kindly refer this link fiddle

    The css I added follows,

    .dropdown ul li:first-child > a:after {
     content: '';
     position: absolute;
     left: 30px;
     top: -8px;
     width: 0;
     height: 0;
     border-left: 5px solid transparent;
     border-right: 5px solid transparent;
     border-bottom: 8px solid #028F41;
     }
    

提交回复
热议问题