Search code examples
text-alignmentstatistics-bootstrap

what should i use instead of 'text-justify' in bootstrap?


guys as we know that bootstrap 5 removed the "text-justify" class now I don't know that what should I use instead of text-justify in bootstrap.

And I don't know why they dropped #29679.( "text-justify" class)


Solution

  • In Bootstrap 5 Documentation they added a note:-


    Note that we don’t provide utility classes for justified text. While aesthetically, the justified text might look more appealing, it does make word-spacing was more random and therefore harder to read.

    I don't find any built-in class for this, further, you can check from here https://getbootstrap.com/docs/5.0/utilities/text/

    Hence, you can use custom class with .custom-class { text-align: justify }.

    Thanks.