i want to bring the following effect on one of my projects as in yahoo search.i tried a lot but couldnot make it.please somebody help me.![alt text][1]
+2
A:
Make your links block-level and use a border like this:
a{
display:block
border:1px solid #0000ff;
width:50px;
height:50px;
}
Mike Johnson
2010-08-05 08:15:27
Should remove "display:block".
ppshein
2010-08-05 09:55:12
A:
Here is solution.
<style>
a {padding:3px; border:1px #000000 solid;}
</style>
ppshein
2010-08-05 09:53:56