For some reason, the ellipsis isn't showing up as expected. Instead of truncating with an ellipsis, the text just goes 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>