Making the clickable area of in-line links bigger without affecting the layout

前端 未结 5 796
滥情空心
滥情空心 2021-02-05 16:49

I\'m looking to make the clickable area of links bigger than they actually are for accessibility since for the intended users it can be difficult to hit them. About 1.5x the siz

5条回答
  •  鱼传尺愫
    2021-02-05 17:09

    I have made an update to gotohales answer, it will work with whatever the length of the text is, then add some padding.

    http://jsfiddle.net/vG7UY/2/

    a {
      position: relative;
    }
      .biggerForMobile:before{
      content:""; 
      width:100%;
      height:100%;
      position:absolute;
      padding:12px;
      top:-10px;
      left:-10px;
    } 
    

提交回复
热议问题