Skip to content

Commit

Permalink
csscounterstyle-suffix 번역 (#20458)
Browse files Browse the repository at this point in the history
* feat: csscounterstyle-suffix 번역

* fix: 온점 하나 제거

* fix: renamed word decorator
  • Loading branch information
givvemee authored May 27, 2024
1 parent c7a9490 commit d3b6a01
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions files/ko/web/api/csscounterstylerule/suffix/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
title: "CSSCounterStyleRule: suffix 속성"
slug: Web/API/CSSCounterStyleRule/suffix
l10n:
sourceCommit: 59b1cd1f520971b89ccf521d53a1d9d3bf4c0756
---

{{APIRef("CSS Counter Styles")}}

{{domxref("CSSCounterStyleRule")}} 인터페이스의 **`suffix`** 속성은 {{cssxref("@counter-style/suffix","suffix")}} 설명자의 값을 호출하거나 지정합니다. 만일 설명자에 지정된 값이 없다면, 이 속성은 빈 문자열을 반환합니다.

##

문자열입니다.

## 예제

다음 예제는 {{cssxref("@counter-style")}} 의 규칙을 보여줍니다. JavaScript에서, `myRules[0]` 은 이 `@counter-style` 규칙이며, `suffix` 를 반환하면 ": " 값을 얻을 수 있습니다.

```css
@counter-style box-corner {
system: fixed;
symbols: ◰ ◳ ◲ ◱;
suffix: ": ";
negative: "-";
}
```

```js
let myRules = document.styleSheets[0].cssRules;
console.log(myRules[0].suffix); // ": "
```

## 명세서

{{Specifications}}

## 브라우저 호환성

{{Compat}}

0 comments on commit d3b6a01

Please sign in to comment.