# Table

[**Bootstrap docs**](https://getbootstrap.com/docs/5.3/content/tables/)

### Key Features

* **Utility Classes**: Incorporates a range of utility classes for customized styling and functionality.
* **Bootstrap Integration**: Fully compatible with Bootstrap's table styling options, as outlined in their documentation.
* **Flexible Structure**: Supports various table elements like captions, column groups, headers, bodies, and footers for comprehensive table construction.

### Customization Options

* **Styling Flexibility**: Apply Bootstrap and custom utility classes to modify the table's appearance and behavior.
* **Content Adaptability**: Easily tailor the table's content and structure to fit different data presentation needs.

### Example Usage

```twig
{% include 'radix:table' with {
  table_utility_classes: ['custom-table-class'],
  caption: 'Table Caption',
  colgroups: colgroup_data,
  header: header_cells,
  rows: row_data,
  footer: footer_cells,
  empty: 'No data available',
} %}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.trydrupal.com/radix/components/table.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
