diff options
author | Peter Bengtsson <mail@peterbe.com> | 2021-07-27 13:17:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 13:17:06 -0400 |
commit | 2f530bed8ebb6853b8c033979ef956575100bdf4 (patch) | |
tree | aada0a33b9db7b4d69f5165f479b89b830e1afa8 /files/ko/web/css | |
parent | 1fef15f08f6d16b320c6d36e9c359be0dae917a6 (diff) | |
download | translated-content-2f530bed8ebb6853b8c033979ef956575100bdf4.tar.gz translated-content-2f530bed8ebb6853b8c033979ef956575100bdf4.tar.bz2 translated-content-2f530bed8ebb6853b8c033979ef956575100bdf4.zip |
remove link 'title' attributes that's just the 'href' (ko, part 3) (#1742)
Diffstat (limited to 'files/ko/web/css')
-rw-r--r-- | files/ko/web/css/url()/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/web/css/url()/index.html b/files/ko/web/css/url()/index.html index 9d72d6c9ec..204eb3329d 100644 --- a/files/ko/web/css/url()/index.html +++ b/files/ko/web/css/url()/index.html @@ -15,7 +15,7 @@ original_slug: Web/CSS/url <p><strong><code><url></code></strong> <a href="/en-US/docs/Web/CSS" title="CSS">CSS</a> <a href="/en-US/docs/Web/CSS/CSS_Types">자료형</a>은 이미지나 글꼴 등 리소스를 가리키는 문자열을 나타냅니다. URL은 {{ Cssxref("background-image") }}, {{ Cssxref("cursor") }}, {{ cssxref("list-style") }} 등 다양한 속성에서 사용할 수 있습니다.</p> <div class="note"> -<p><strong>URI와 URL</strong> <a class="external" href="http://en.wikipedia.org/wiki/Uniform_Resource_Identifier" title="http://en.wikipedia.org/wiki/Uniform_Resource_Identifier">URI</a>와 <a class="external" href="http://en.wikipedia.org/wiki/Uniform_Resource_Locator">URL</a>은 다릅니다. URI는 단순히 리소스의 식별자입니다. URL은 URI의 종류 중 하나로, 리소스의 <u>위치</u>를 표현합니다. URI는 URL일 수도 있고, 리소스의 이름(<a class="external" href="http://en.wikipedia.org/wiki/Uniform_Resource_Name">URN</a>)일 수도 있습니다.</p> +<p><strong>URI와 URL</strong> <a class="external" href="http://en.wikipedia.org/wiki/Uniform_Resource_Identifier">URI</a>와 <a class="external" href="http://en.wikipedia.org/wiki/Uniform_Resource_Locator">URL</a>은 다릅니다. URI는 단순히 리소스의 식별자입니다. URL은 URI의 종류 중 하나로, 리소스의 <u>위치</u>를 표현합니다. URI는 URL일 수도 있고, 리소스의 이름(<a class="external" href="http://en.wikipedia.org/wiki/Uniform_Resource_Name">URN</a>)일 수도 있습니다.</p> <p>CSS Level 1의 <code>url()</code> 함수형 표기법은 순수 URL을 나타낼 때만 사용했고, CSS Level 2에서 범위가 늘어나 URL이나 URN 등 어떤 URI도 사용할 수 있도록 바뀌었습니다. 이로써 <code>url()</code>을 사용해 <code><uri></code> CSS 자료형을 표현할 수 있었는데, 이상한 방식인데다 실제 CSS에서 URN은 거의 사용하지 않았으므로 불필요하다고 생각할만한 점이었습니다. CSS3에서는 혼란을 잠재우기 위해 초기의 더 좁은 정의로 돌아갔기 때문에 이제 <code>url()</code>은 <code><url></code>만을 나타낼 수 있습니다.</p> </div> |