In Bootstrap 4 I can use text-truncate
as a class in an element. Eg:
<span class="text-truncate">Any very long text</span>
What I need now is to use this class text-truncate
in a scss file for many objects instead of writing it directly in .html files.
How to?
Can I use something like:
@import "text-truncate" from "bootstrap.scss";
.myBeautifulDiv {
use text-truncate;
}
This would be great! Is it possible?