---
layout: docs
title: Label
description: null
---

## Example

<form>
  <label for="input">Label</label>
</form>

### HTML

```html
<label for="input">...</label>
```

### CSS

```scss
--label-margin: 0.5em 0;
--label-font-family: inherit;
--label-font-weight: inherit;
--label-font-size: var(--font-size-s);
--label-font-style: normal;
--label-color: inherit;
--label-line-height: var(--line-height-m);
--label-text-transform: none;
--label-letter-spacing: var(--letter-spacing);
```
