This should do the trick:-
By default a
is an inline element and width does not affect them. So change it to inline-block to have it take the width you specify.
.link_class {
display:inline-block;
width:100%;
height:100%;
}
This should do the trick:-
By default a
is an inline element and width does not affect them. So change it to inline-block to have it take the width you specify.
.link_class {
display:inline-block;
width:100%;
height:100%;
}