Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: VirusMinusPosted on 2007-02-15 at 13:24:07ID: 18544045
CSS allows you to change the cursor icon.
eg. a.myLink{cursor:pointer}
also, its semantically incorrect to put a div (block level element) inside of an <a> (inline element)
you could make the link itself a block element and give it dimensions;
eg. a.myLink{
display:block;
float:left;
width:100px;
height:20px;
border:1px solid red;
background:gray;
}
or just put paddings on a hyperlink, which won't make it a fixed width and height but it will be like a button around the text depending on the text size.
a.myLink{padding:10px 20px;}