How do I remove a section of the border on a div to make left nav look seamless with main content section?

后端 未结 4 526
旧时难觅i
旧时难觅i 2021-01-22 08:12

I am trying to remove the left border where the active menu item meets right content div.

See http://d.pr/i/hfRZ+

So it appears the active element is the same as

4条回答
  •  长情又很酷
    2021-01-22 08:39

    .selected-item {
      border-left: 0px;
      border-top: 0px;
      border-right: 0px;
      border-bottom: 0px
    }
    

提交回复
热议问题