How can I make a link inside a div fill the entire space inside the div?

前端 未结 7 691
灰色年华
灰色年华 2020-12-30 18:27

I have a div that has a set width and it is wrapped around a link. I want the link inside to fill the entire space of the div so that when I click

7条回答
  •  [愿得一人]
    2020-12-30 19:10

    Why use outer div in first place? Write all your code for the link and show your link as a button. That will simplify your problem.

    .link_class{width:150px;height:30px;color:#fff;text-align:center;display: block;
               -webkit-border-radius:3px; -moz-border-radius:3px; border-radius:3px;
               /*some other styles*/}
    

    Check this demo: Fiddle

提交回复
热议问题