> For the complete documentation index, see [llms.txt](https://yamoo9.gitbook.io/scss-mixins/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://yamoo9.gitbook.io/scss-mixins/mixins/initialize/reset-button.md).

# reset-button()

## 용도 <a href="#use" id="use"></a>

`<button>` 요소를 초기화 설정하는 믹스인입니다.

## 사용법 <a href="#usage" id="usage"></a>

`reset-button()` 믹스인을 실행합니다.

> reset-button()

```ruby
button, .button {
  @include reset-button;
}
```

위 예시 코드는 아래의 CSS로 컴파일 되어 출력됩니다.

```css
button, .button {
  user-select: none;
  cursor: pointer;
}
```

## 로직 <a href="#logic" id="logic"></a>

`reset-button()` 믹스인은 다음의 로직에 의해 작성되었습니다.&#x20;

```javascript
@mixin reset-button() {
  user-select: none;
  cursor: pointer;
}
```

1. 믹스인을 호출하면 코드를 출력

## 참고 <a href="#reference" id="reference"></a>

믹스인에 사용된 Sass의 빌트인 모듈은 다음과 같습니다.

* [@mixin / @include](https://sass-lang.com/documentation/at-rules/mixin)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://yamoo9.gitbook.io/scss-mixins/mixins/initialize/reset-button.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.
