Tuesday, 1 September 2020

CSS show elispsed text on hover

 https://stackoverflow.com/questions/34833815/showing-truncated-text-on-hover-using-css-ellipsis-overlaps-text-below-it


.name:hover{
    overflow: visible; 
    white-space: normal;
    height:auto;  /* just added this line */
}

https://stackoverflow.com/questions/34833815/showing-truncated-text-on-hover-using-css-ellipsis-overlaps-text-below-it

No comments:

Post a Comment