In this below html design, I want to apply text-overflow to ellipsis for the media-played and remarks label and want the media-played (first big line) on the first line and
New CSS:
#media-played,#remarks {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display:block;
}
#player-play, #player-stop
{
display: inline-block;
width: 48px;
height: 48px;
}
#player-play
{
background-image: url('../images/play.png');
}
#player-stop
{
background-image: url('../images/stop.png');
}
jsFiddle:http://jsfiddle.net/dTffH/