CSS text-align-last
The text-align-last property in CSS is used to specify how the last line of a block or inline element is aligned when the text-align property is set to justify. This property can be applied to block elements such as div or inline elements such as span.
The possible values for text-align-last are:
auto: The default value, which aligns the last line according to the value of thetext-alignpropertystart: The last line is aligned to the start of the lineend: The last line is aligned to the end of the lineleft: The last line is aligned to the left edge of the containerright: The last line is aligned to the right edge of the containercenter: The last line is centered within the containerjustify: The last line is justified within the container
In the example above, the last line of the div is aligned to the start of the line, as specified by text-align-last: start;
It is important to note that the text-align-last property is not supported in Internet Explorer browser versions prior to IE11.