Untitled Documentaaa 
 ----------------
a:hover { position:relative;top:1 px }
定义下沉1象素
a:hover img{position:relative;top:-1 px}
这里定位-1,原来的1象素加上这个-1,就为0,则不下沉
-----------------
得到了CSS两个问题的内容:
1。包含选择符的用法
(td a:hover以前用过,这里不再研究)
a:hover { color:red}
a:hover span { color:yellow} /* a:hover包含的span标记 */
a:hover .xxx { color:black} /* a:hover包含的xxx类选择符 */
Untitled Documentaaabbbccc2。关于CSS中定位的问题( postion:relative;top:1px)
CSS中的定位具有叠加性!
a:hover { position:relative;top:1 px }
定义top=1px
a:hover img{position:relative;top:-1 px}
这里会累加上面的值,也就是top=1px+(-1px)=0px(没有下沉)
Untitled Documentaaabbbccc 
 具体讨论看这里
www.blueidea.com/bbs/newsdetail.asp?id=457116&page=1