textual/docs/examples/styles/text_overflow.tcss
2025-01-27 12:18:59 +00:00

17 lines
381 B
Text

Static {
height: 1fr;
text-wrap: nowrap;
}
#static1 {
text-overflow: clip; # Overflowing text is clipped
background: red 20%;
}
#static2 {
text-overflow: fold; # Overflowing text is folded on to the next line
background: green 20%;
}
#static3 {
text-overflow: ellipsis; # Overflowing text is truncated with an ellipsis
background: blue 20%;
}