Stretching tag to fill entire
  • 前端 未结 10 600
    南旧
    南旧 2020-11-28 08:59

    Here\'s a simple menu structure:

    10条回答
    •  醉梦人生
      2020-11-28 09:41

      I wanted this functionality only on tab view i.e below 720px, so in media query I made:

      @media(max-width:720px){
        a{
          display:block;
          width:100%;
        }
      }
      

    提交回复
    热议问题