diff options
Diffstat (limited to 'files/ko/web/css/_colon_defined/index.html')
-rw-r--r-- | files/ko/web/css/_colon_defined/index.html | 118 |
1 files changed, 118 insertions, 0 deletions
diff --git a/files/ko/web/css/_colon_defined/index.html b/files/ko/web/css/_colon_defined/index.html new file mode 100644 index 0000000000..89487adbb9 --- /dev/null +++ b/files/ko/web/css/_colon_defined/index.html @@ -0,0 +1,118 @@ +--- +title: ':defined' +slug: 'Web/CSS/:defined' +tags: + - CSS + - Layout + - Pseudo-class + - Reference + - Selector + - Web +translation_of: 'Web/CSS/:defined' +--- +<div>{{CSSRef}}</div> + +<p><a href="/ko/docs/Web/CSS">CSS</a> <strong><code>:defined</code></strong> <a href="/ko/docs/Web/CSS/Pseudo-classes">의사 클래스</a>는 정의된 요소를 선택합니다. 정의된 요소란 브라우저에 내장된 표준 요소와, 성공적으로 정의({{domxref("CustomElementRegistry.define()")}} 메서드 등)한 사용자 지정 요소를 의미합니다.</p> + +<pre class="brush: css no-line-numbers notranslate">/* Selects any defined element */ +:defined { + font-style: italic; +} + +/* Selects any instance of a specific custom element */ +simple-custom:defined { + display: block; +} +</pre> + +<h2 id="구문">구문</h2> + +<pre class="syntaxbox notranslate">{{csssyntax}}</pre> + +<h2 id="예제">예제</h2> + +<h3 id="정의되기_전까지_요소_숨기기">정의되기 전까지 요소 숨기기</h3> + +<p>다음 코드는 저희의 <a href="https://github.com/mdn/web-components-examples/tree/master/defined-pseudo-class">defined-pseudo-class</a> 데모에서 발췌한 것입니다. (<a href="https://mdn.github.io/web-components-examples/defined-pseudo-class/">동작 모습 보기</a>)</p> + +<p>이 데모에서는 아주 간단한 사용자 지정 요소를 정의합니다.</p> + +<pre class="brush: js notranslate">customElements.define('simple-custom', + class extends HTMLElement { + constructor() { + super(); + + let divElem = document.createElement('div'); + divElem.textContent = this.getAttribute('text'); + + let shadowRoot = this.attachShadow({mode: 'open'}) + .appendChild(divElem); + } +})</pre> + +<p>그 후, 위의 요소를 표준 <code><p></code>와 함께 문서에 넣습니다.</p> + +<pre class="brush: html notranslate"><simple-custom text="Custom element example text"></simple-custom> + +<p>Standard paragraph example text</p></pre> + +<p>CSS에는 다음의 스타일을 작성합니다.</p> + +<pre class="brush: css notranslate">// Give the two elements distinctive backgrounds +p { + background: yellow; +} + +simple-custom { + background: cyan; +} + +// Both the custom and the built-in element are given italic text +:defined { + font-style: italic; +}</pre> + +<p>그리고 아래의 두 규칙을 통해, 정의되지 않은 사용자 지정 요소는 숨기고, 정의가 성공적으로 된 경우에는 블록 레벨 요소로 표시합니다.</p> + +<pre class="brush: css notranslate">simple-custom:not(:defined) { + display: none; +} + +simple-custom:defined { + display: block; +}</pre> + +<p>위의 데모는 페이지에 불러올 때 꽤 시간이 걸릴 수 있는 복잡한 사용자 지정 요소 스타일링에 유용하게 쓸 수 있습니다. 로딩이 아직 진행 중일 때, 스타일을 입히지 않은는 못생긴 요소가 페이지에 노출되는 것을 막을 수 있으니까요.</p> + +<h2 id="명세">명세</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ SpecName('HTML WHATWG', 'semantics-other.html#selector-defined', ':defined') }}</td> + <td>{{ Spec2('HTML WHATWG') }}</td> + <td></td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">브라우저 호환성</h2> + +<div> + + +<p>{{Compat("css.selectors.defined")}}</p> +</div> + +<h2 id="같이_보기">같이 보기</h2> + +<ul> + <li><a href="/ko/docs/Web/Web_Components">웹 컴포넌트</a></li> +</ul> |