我应该用什么代替 bootstrap 中的 'text-justify'?
what should i use instead of 'text-justify' in bootstrap?
伙计们,我们知道 bootstrap 5 删除了“text-justify”class 现在我不知道我应该使用什么来代替 bootstrap 中的 text-justify .
而且我不知道他们为什么放弃 #29679。( "text-justify" class)
在 Bootstrap 5 文档中,他们添加了注释:-
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.
我没有找到任何内置的 class,此外,您可以从这里查看 https://getbootstrap.com/docs/5.0/utilities/text/
因此,您可以将自定义 class 与 .custom-class { text-align: justify }
结合使用。
谢谢。
伙计们,我们知道 bootstrap 5 删除了“text-justify”class 现在我不知道我应该使用什么来代替 bootstrap 中的 text-justify .
而且我不知道他们为什么放弃 #29679。( "text-justify" class)
在 Bootstrap 5 文档中,他们添加了注释:-
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.
我没有找到任何内置的 class,此外,您可以从这里查看 https://getbootstrap.com/docs/5.0/utilities/text/
因此,您可以将自定义 class 与 .custom-class { text-align: justify }
结合使用。
谢谢。