This is a test post
10 November 2025
In CSS, text will automatically line-wrap if there isn't enough space to fit all of the characters on a single line.
By default, the algorithm will look for “soft wrap” opportunities; these are the characters that the algorithm can split on. In English, the only soft wrap opportunities are whitespace and hyphens, but this varies from language to language.
If a line doesn't have any soft wrap opportunities, and it doesn't fit, it will cause the text to overflow:
Second title
Third paragraph
const ExpandOperation = struct {
cartLineId: []const u8,
expandedCartItems: []const ExpandedCartItem,
price: ?struct {
percentageDecrease: struct {
value: []const u8,
},
},
};
Third title
Fourth paragraph