> For the complete documentation index, see [llms.txt](https://spectrecss.angular-package.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://spectrecss.angular-package.dev/function/important.md).

# important()

{% code title="" lineNumbers="true" %}

```scss
@function important($important: false) {
  @if $important == true {
    $important: ' !important';
  } @else if $important == false {
    $important: '';
  }
  @return #{$important};
}
```

{% endcode %}
