纯css悬停显示另一个元素可能吗?

时间:2010-09-07 13:59:53

标签: html css

<a href="">
  text here always show
 <div  style="display:none;">
   hide text here
 </div>
</a>


a:hover{

//when hover show 'hide text here' ; when not hover, hide it again 
}

可以使用纯css来实现这种效果吗?

1 个答案:

答案 0 :(得分:49)

a div {
    display: none;
}

a:hover div {
    display: block;
}