I'm getting crazy about how to simulate the same effect i'm showing in de code below for a single line of text ( on hover ) on a multiple-line text.
.underline-on-hover
{
position:relative;
display:inline-block;
}
.underline-on-hover::after
{
content: " ";
background-color: red;
width:0;
position: absolute;
left:0;
bottom:0;
height:5px;
-webkit-transition: width 1s ease-in-out;
-moz-transition: width 1s ease-in-out;
-o-transition: width 1s ease-in-out;
transition: width 1s ease-in-out;
}
.underline-on-hover:hover::after
{
width:100%;
}
<p class="underline-on-hover">
I'm a single line text!
</p>
<br><br>
<p class="underline-on-hover" style="max-width:200px">
I'm a multiple line text... let me prove it: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
As you can see, i can simulate this "underline" animation from left to right for a single line of text with an after, but i don't know how to do it for multiple line text, my problem is that i can't split it into lines easily because it's gonna be a dynamic text inserted into a dynamic container...
Any idea of how to achieve it?
Thank you very much!
Maybe you should try How to select nth line of text (CSS/JS) solution with jQuery to specify each line, then use your css.