Make A List Item Clickable (HTML/CSS)

后端 未结 8 2027
北恋
北恋 2020-12-03 05:26

So I\'m trying to make each list-item on my site clickable but I\'m not sure what is the best way to do it. Please help me out.

So here is the relevant HTML:

8条回答
  •  悲&欢浪女
    2020-12-03 06:05

    HTML and CSS only.

    #leftsideMenu ul li {
      border-bottom: 1px dashed lightgray;
      background-color: cadetblue;
    }
    
    #leftsideMenu ul li a {
      padding: 8px 20px 8px 20px;
      color: white;
      display: block;
    }
    
    #leftsideMenu ul li a:hover {
      background-color: lightgreen;
      transition: 0.5s;
      padding-left: 30px;
      padding-right: 10px;
    }

提交回复
热议问题