tags:

views:

33

answers:

1
<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 
}

possible to use pure css to do this effect?

+6  A: 
a div {
    display: none;
}

a:hover div {
    display: block;
}
robertc