This is what I tried (see here):
body {
overflow: hidden;
}
span {
border: solid 2px blue;
white-space: nowrap;
text-overflow: ellipsis;
}
Essentially, I want the span to shrink with ellipsis when the window is made small. What did I do wrong?