Bootstrap - Tạo danh sách định nghĩa theo chiều ngang

Tạo danh sách định nghĩa theo chiều ngang

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap Horizontal Definitoin List</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="m-4">
    <dl class="row">
        <dt class="col-sm-3">User Agent</dt>
        <dd class="col-sm-9">An HTML user agent is any device that interprets HTML documents.</dd>
        <dt class="col-sm-3 text-truncate">Client-side Scripting</dt>
        <dd class="col-sm-9">Client-side scripting generally refers to the category of computer programs on the web that are executed by the user's web browser.</dd>
        <dt class="col-sm-3">Document Tree</dt>
        <dd class="col-sm-9">The tree of elements encoded in the source document.</dd>
    </dl>
</div>
</body>
</html>

Xem ví dụ