I'm trying to show/hide a line under an element using a transition: border-bottom .5s
in combination of a ::first-letter
pseudo element. The pseudo element is just to make the first character bold
. It works well in Chrome, Firefox and Opera but IE does nothing at all.
One work around would be to use a simple html <b></b>
instead of css solution ::first-letter {font-weight: bold;}
. However, that's not what I want.
Here is a jsfiddle.