Por ahora lo resuelvo así. Pero el efecto es un tanto "tosco":
Código Javascript
:
Ver original$("div#word_description").hover(
function(){
$(this).css({"height":"auto", "border-bottom": "3px solid #BFFFFF"});
},
function () {
$(this).css({"height":"1em", "border": "0"});
});