I want to visualize long titles shortened using the ellipsis style. That works fine and as expected.
For some cases I require the text to get a trailing icon (to invoke an action). Usually I do this using the :after css pseudo selector.
However I fail to get both details to work together. Whatever I try, the icon is not really placed after the text, as desired, but in the next line. So a linebreak is used by the browser, though I try to prevent this (as part of the ellipsis style). Simply specifying a top value is no solution, since that breaks when the text is too short to be shortened.
This is a much simplyfied example to demonstrate the behavioour:
HTML markup:
<div id="wrapper">
<span id="text">some longish and wide text which should get a trailing icon when hovered</span>
</div>
CSS definition:
#wrapper {
width:50%;
background-color: lightgray;
margin: 10em;
padding: 1em;
}
#text {
font-size: 200%;
padding: 0.2em;
display: inline-block;
overflow-x: hidden;
white-space: nowrap;
text-overflow: ellipsis;
width: 98%;
background-color: gold;
}
#text:hover {
background-color: goldenrod;
}
#text:hover:after {
content: url("http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/48x48/playback_play.png");
float: right;
}
I prepared a simple demo as a fiddler.
How can I prevent the icon to be placed below the text?