How to get rid of underline for Link component of React Router?

后端 未结 17 2607
独厮守ぢ
独厮守ぢ 2020-12-23 00:16

I have the following:

How do I get rid of the blue underline? The code is below:



        
17条回答
  •  清歌不尽
    2020-12-23 01:00

    //CSS

    .navigation_bar > ul > li {
          list-style: none;
          display: inline;
          margin: 2%;
        }
    
        .link {
          text-decoration: none;
        }
    

    //JSX

     
    • Home

提交回复
热议问题