I can't seem to get the ellipsis to display. The text just wraps to the next line.
text {
display: inline;
overflow: hidden;
text-align: center;
text-overflow: ellipsis;
}
grid {
width: 200px;
height: 3em;
border: 1px solid #000000ff;
display: grid;
grid-template-columns: 1fr;
}
<grid><text>This text should display an ellipsis instead of wrapping!</text></grid>