```
For more control over image sizing:
```html theme={null}
```
**Supported responsive CSS properties:**
* `max-width`, `min-width` - Control width bounds
* `max-height`, `min-height` - Control height bounds
* `height:auto` - Maintain aspect ratio
* `object-fit` - Control how images fit (e.g., `contain`, `cover`)
You can add background colors to markdown tiles to emphasize sections or titles.
Hello World!.
Or highlight something important.
Add links like this!
Use subscript or superscript
Easily colour your text.
Or change the size.
Center your text.
Or align it to the right.
You can even justify a line of text if you are trying to communicate a point that is particularly long, perhaps something like this example sentence?
Change the word spacing. 👏
Or combine a whole bunch of styles together.
tags to tag these models. You can use sets of existing tags, or you can create a new Lightdash-specific tag. Something like this:
```bash theme={null}
{{
config(
materialized='table',
tags=['lightdash']
)
}}
```
The `lightdash dbt run` command supports dbt model selection syntax to generate .yml files for a group of models. This means you can use tags or other model selection syntax to specify which models you want to generate dimensions for in your dbt project.
```bash theme={null}
lightdash dbt run -s tag:lightdash # all models with the lightdash tag
lightdash dbt run -s payments # just payments
lightdash dbt run -s payments+ # payments and all children
lightdash dbt run -s +payments # payments and all parents
lightdash dbt run -s payments+ +customers tag:lightdash # mix and match
```