Not much to comment here ... I'm trying to set the text-overflow to an ellipsis on a div, while having a fixed div with a background somewhere else on the page, which doesn't seem to be working in Firefox (but does work with Chrome) ... Here's the code :
.fixed {
position: fixed;
background-color: #fff;
}
.ellipsis {
width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
<div class="fixed">
asdf
</div>
<div class="ellipsis">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</div>