Yes you can if you are using HTML5, this code is valid not otherwise:
.......
If you are not using HTML5, you can make your link block
:
Click Here
CSS:
#link {
display : block;
width:100px;
height:40px;
}
Notice that you can apply width
, height
only after making your link block level element.