Eine Title-Komponente dient dazu, Überschriften und Titel in verschiedenen Größen und Hierarchiestufen darzustellen, um Inhalte strukturiert und übersichtlich zu präsentieren.

| Nummer | Typ | Beschreibung | Optional | Hinweis |
|---|---|---|---|---|
| 1 | Text | Title | Nein |
The <sbb-title> is a component which renders a heading element according to the provided level (default: 1).
<sbb-title>Hello</sbb-title>
In scenarios where the visual representation needs to be different from the semantic meaning of the title level,
it is possible to use the visualLevel property.
The available values for both level and visualLevel are the numbers from 1 to 6 (h1 to h6).
<sbb-title level="3" visual-level="4">Hi!</sbb-title>
The component has a negative variant which can be set with the self-named property.
<sbb-title negative>Negative</sbb-title>
As a default the <sbb-title> contains spacing on top and bottom on the host.
This can be removed or customized via simple CSS rules.
With the lean theme, the title is given smaller sizes and spacings.
SbbTitleElement, sbb-title.| Name | Attribute | Privacy | Type | Default | Description |
|---|---|---|---|---|---|
level | level | public | '1' | '2' | '3' | '4' | '5' | '6' | '1' | Title level |
negative | negative | public | boolean | false | Negative coloring variant flag. |
visualLevel | visual-level | public | '1' | '2' | '3' | '4' | '5' | '6' | null | null | Visual level for the title. Optional, if not set, the value of level will be used. |
| Name | Description |
|---|---|
| Use the unnamed slot for the content of the title. |