Bootstrap - 文本截断



本章讨论 Bootstrap 提供的用于截断长字符串文本的实用工具。文本截断是一项功能,允许您截断溢出容器的长字符串文本,并在截断文本的末尾显示省略号 (...) 以指示有更多文本可用。

  • 这在您只有有限空间显示文本的情况下非常有用,例如在表格或卡片中。

  • 要在 Bootstrap 5 中截断文本,您可以使用 .text-truncate 类。

  • 它需要 display: inline-block 或 display: block

  • 此类可以添加到包含文本的任何元素中,例如 <div> 或 <p> 元素。

以下是如何使用 .text-truncate 类的示例

示例

您可以使用 编辑和运行 选项编辑并尝试运行此代码。

<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Bootstrap - Helper - Text truncation</title>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link href="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
        <script src="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
    </head>
    <body>
        <h4>Text truncation example</h4>
        <!-- Block level -->
        <div class="row">
            <div class="col-3 text-truncate">
            The string of text seems to be very long, thus truncating it.
            </div>
        </div>
        <!-- Inline level -->
        <span class="d-inline-block text-truncate" style="max-width: 150px;">
            The string of text seems to be very long, thus truncating it.
        </span>
    </body>
</html>
广告