Forum Discussion
5 Replies
Found this, may help:
"It's because anchors are as standard, inline elements. Adding display:inline-block will make the above code work."
Sign in to react to this post- This does not work. I changed both elements to inline block elements, and only one or the other. None of the options work. This is my code:
<a href="">
<div class="inside">
Long line of text blah blah blah.
</div>
</a>Sign in to react to this post - can you link me to where you found that quote?Sign in to react to this post
There is a limit to the length of HTML between anchor tags. Hitting this limit will auto-crop the innerHTML of the <a>-tag. So adding any additional HTML inside just makes things worse.
I'm neither aware of the exact value of this length as well as any way to change that value. Lithium support can probably help here.
Sign in to react to this postIt was basically suggesting you modify the CSS your using to change the ellipsis behaviour, Not sure it works on all browsers...?
Sign in to react to this post